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

# Get export status

> Return the current status of an export.



## OpenAPI

````yaml https://api.soriaanalytics.com/v1/openapi.json GET /exports/{export_id}
openapi: 3.1.0
info:
  title: Soria Data API
  description: >-
    Governed data query API. `GET /catalog` is the canonical dataset
    documentation: its schemas, grain, methodology, refresh cadence, and source
    provenance are generated from dbt on every relevant change. `POST
    /search/documents` searches the public source-document corpus behind those
    datasets. For larger result sets, create a private CSV (default) or Parquet
    export, poll its status URL, and use the short-lived download URL once it is
    ready.
  version: 1.0.0
servers:
  - url: /v1
security: []
paths:
  /exports/{export_id}:
    get:
      tags:
        - data
      summary: Get Dataset Export
      description: Return the state of one export owned by the authenticated user.
      operationId: get_dataset_export_exports__export_id__get
      parameters:
        - name: export_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Export Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatasetExportStatus'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    DatasetExportStatus:
      properties:
        id:
          type: string
          title: Id
        dataset:
          type: string
          title: Dataset
        format:
          type: string
          enum:
            - csv
            - parquet
          title: Format
        status:
          type: string
          enum:
            - queued
            - running
            - ready
            - failed
            - expired
          title: Status
        row_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Row Count
        size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Size Bytes
        created_at:
          type: string
          format: date-time
          title: Created At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
        status_url:
          type: string
          title: Status Url
        download_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Download Url
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
      type: object
      required:
        - id
        - dataset
        - format
        - status
        - created_at
        - status_url
      title: DatasetExportStatus
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````