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

# Download bulk job result

> Streams the output CSV. Only available when job status is DONE.



## OpenAPI

````yaml GET /api/v1/bulk/jobs/{id}/download
openapi: 3.0.3
info:
  title: Normalize API
  version: 1.0.0
  description: >-
    Job title normalization API. Convert natural language job descriptions to
    canonical titles or boolean search strings.
servers:
  - url: https://trynormalize.com
security:
  - bearerAuth: []
paths:
  /api/v1/bulk/jobs/{id}/download:
    get:
      summary: Download bulk job result
      description: Streams the output CSV. Only available when job status is DONE.
      operationId: downloadBulkJob
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: CSV file
          content:
            text/csv:
              schema:
                type: string
                format: binary
        '401':
          description: Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Job not found or not completed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - details
            - request_id
          properties:
            code:
              type: string
              enum:
                - invalid_request
                - limits_exceeded
                - invalid_json
                - invalid_input_format
                - authentication_failed
                - invalid_api_key
                - quota_exceeded
                - plan_restricted_feature
                - resource_not_found
                - bulk_job_conflict
                - parsing_failed
                - ambiguous_mapping
                - rate_limited
                - public_try_exceeded
                - internal_error
                - llm_error
                - database_error
            message:
              type: string
            details:
              type: object
              additionalProperties: true
            request_id:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API key from the dashboard. Pass as `Authorization: Bearer <key>`.'

````