> ## Documentation Index
> Fetch the complete documentation index at: https://nixtla.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Download an async execute_step job result

> Returns the completed step's output as a zip of parquet members, with the sandbox's envelope in the `nixtla-metadata` response header. Valid once the status endpoint reads `succeeded`.



## OpenAPI

````yaml /openapi.json get /v2/execute_step/jobs/{job_id}/result
openapi: 3.1.0
info:
  title: Nixtla Forecast API
  description: >-
    API for TimeGPT forecast. Just send your data as json and get results. We do
    the heavy lifting.
  version: 0.4.2
servers:
  - url: https://api.nixtla.io
security: []
paths:
  /v2/execute_step/jobs/{job_id}/result:
    get:
      tags:
        - async jobs
      summary: Download an async execute_step job result
      description: >-
        Returns the completed step's output as a zip of parquet members, with
        the sandbox's envelope in the `nixtla-metadata` response header. Valid
        once the status endpoint reads `succeeded`.
      operationId: get_execute_step_job_result_v2_execute_step_jobs__job_id__result_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: The step's output zip.
          content:
            application/zip:
              schema:
                type: string
                format: binary
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      description: HTTPBearer
      scheme: bearer

````