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

# Get an export job



## OpenAPI

````yaml /openapi.json get /api/v1/orgs/{org_slug}/derived-dataset-versions/{version_id}/export-jobs/{job_id}
openapi: 3.1.0
info:
  title: NMotion Data Platform API (developer)
  version: 0.1.0
  description: >-
    The stable HTTP surface of the NMotion data platform for CLI, SDK, and
    automation clients.
servers:
  - url: https://platform.neural-motion.org
    description: Production
  - url: https://dev.platform.neural-motion.org
    description: Dev channel
security: []
tags:
  - name: Platform
    description: Version and service metadata.
  - name: Catalog
    description: Browse the public dataset catalog.
  - name: Users and tokens
    description: Identity and personal access tokens.
  - name: Projects
    description: Navigate organizations and projects.
  - name: Project datasets
    description: Datasets, manifests, and episodes inside a project.
  - name: Imports
    description: Bring data into a project.
  - name: Exports
    description: Derived dataset versions and export jobs.
paths:
  /api/v1/orgs/{org_slug}/derived-dataset-versions/{version_id}/export-jobs/{job_id}:
    get:
      tags:
        - Exports
      summary: Get an export job
      operationId: >-
        get_derived_dataset_export_job_api_v1_orgs__org_slug__derived_dataset_versions__version_id__export_jobs__job_id__get
      parameters:
        - name: org_slug
          in: path
          required: true
          schema:
            type: string
            title: Org Slug
        - name: version_id
          in: path
          required: true
          schema:
            type: string
            title: Version Id
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
        - name: Authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DerivedDatasetExportJobResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    DerivedDatasetExportJobResponse:
      properties:
        item:
          $ref: '#/components/schemas/DerivedDatasetExportJob'
      type: object
      required:
        - item
      title: DerivedDatasetExportJobResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DerivedDatasetExportJob:
      properties:
        schema_version:
          type: string
          const: 1.0.0
          title: Schema Version
          default: 1.0.0
        kind:
          type: string
          const: derived_dataset_export_job
          title: Kind
          default: derived_dataset_export_job
        id:
          type: string
          title: Id
        org_slug:
          type: string
          title: Org Slug
        project_slug:
          type: string
          title: Project Slug
          default: default
        version_id:
          type: string
          title: Version Id
        artifact_key:
          type: string
          enum:
            - manifest
            - recipe
            - annotation_jsonl
            - lerobot
          title: Artifact Key
        artifact_path:
          type: string
          title: Artifact Path
        status:
          type: string
          enum:
            - queued
            - running
            - succeeded
            - failed
            - canceled
          title: Status
          default: queued
        requested_by:
          type: string
          title: Requested By
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
        checksum_sha256:
          anyOf:
            - type: string
            - type: 'null'
          title: Checksum Sha256
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Size Bytes
      type: object
      required:
        - id
        - org_slug
        - version_id
        - artifact_key
        - artifact_path
        - requested_by
        - created_at
        - updated_at
      title: DerivedDatasetExportJob
    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
      scheme: bearer
      bearerFormat: JWT or nmp_ PAT
      description: >-
        Clerk session JWT for browsers, or nmp_ personal access token for
        CLI/SDK clients. Not accepted by ClerkSession-only operations.

````