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

# Download evaluation export

> Redirect to the signed URL for a completed export. If Accept: application/json is sent, returns JSON with the download_url instead.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/evaluations/exports/{id}/download
openapi: 3.0.0
info:
  version: 1.0.0
  title: Axis API
  description: API for Axis conversation scoring and analysis
servers:
  - url: https://api.craftcx.com
security: []
paths:
  /v1/evaluations/exports/{id}/download:
    get:
      tags:
        - Export Data
      summary: Download evaluation export
      description: >-
        Redirect to the signed URL for a completed export. If Accept:
        application/json is sent, returns JSON with the download_url instead.
      parameters:
        - schema:
            type: string
            description: The export ID
          required: true
          description: The export ID
          name: id
          in: path
      responses:
        '200':
          description: >-
            JSON response with download URL (when Accept: application/json is
            sent)
          content:
            application/json:
              schema:
                type: object
                properties:
                  download_url:
                    type: string
                    format: uri
                    description: Signed URL to download the export
                required:
                  - download_url
        '302':
          description: >-
            Redirect to the signed download URL (default behavior for `fetch`
            requests)
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 401
                    description: >-
                      The HTTP status code generated by the origin server for
                      this occurrence of the problem.
                  type:
                    type: string
                    format: uri
                    default: about:blank
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                required:
                  - status
                  - title
        '404':
          description: The resource was not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 404
                    description: >-
                      The HTTP status code generated by the origin server for
                      this occurrence of the problem.
                  type:
                    type: string
                    format: uri
                    default: about:blank
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                required:
                  - status
                  - title
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 409
                    description: >-
                      The HTTP status code generated by the origin server for
                      this occurrence of the problem.
                  type:
                    type: string
                    format: uri
                    default: about:blank
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                required:
                  - status
                  - title
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 500
                    description: >-
                      The HTTP status code generated by the origin server for
                      this occurrence of the problem.
                  type:
                    type: string
                    format: uri
                    default: about:blank
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                required:
                  - status
                  - title

````