> ## 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.

# List derived dataset versions



## OpenAPI

````yaml /openapi.json get /api/v1/orgs/{org_slug}/derived-dataset-versions
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:
    get:
      tags:
        - Exports
      summary: List derived dataset versions
      operationId: >-
        list_derived_dataset_versions_api_v1_orgs__org_slug__derived_dataset_versions_get
      parameters:
        - name: org_slug
          in: path
          required: true
          schema:
            type: string
            title: Org Slug
        - name: project_slug
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Project Slug
        - 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/DerivedDatasetVersionListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    DerivedDatasetVersionListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/DerivedDatasetVersionManifest'
          type: array
          title: Items
      type: object
      required:
        - items
      title: DerivedDatasetVersionListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DerivedDatasetVersionManifest:
      properties:
        schema_version:
          type: string
          const: 1.0.0
          title: Schema Version
          default: 1.0.0
        kind:
          type: string
          const: derived_dataset_version_manifest
          title: Kind
          default: derived_dataset_version_manifest
        id:
          type: string
          title: Id
        org_slug:
          type: string
          title: Org Slug
        project_slug:
          type: string
          title: Project Slug
          default: default
        slug:
          type: string
          title: Slug
        name:
          type: string
          title: Name
        version:
          type: integer
          title: Version
          default: 1
        status:
          type: string
          enum:
            - manifest_ready
            - materialization_required
          title: Status
          default: materialization_required
        source:
          $ref: '#/components/schemas/DerivedDatasetSourceRef'
        recipe:
          $ref: '#/components/schemas/DerivedDatasetRecipe'
        lerobot_version:
          type: string
          enum:
            - v2.1
            - v3
          title: Lerobot Version
          default: v3
        export_artifacts:
          items:
            $ref: '#/components/schemas/DerivedDatasetArtifactManifest'
          type: array
          title: Export Artifacts
        provenance:
          additionalProperties: true
          type: object
          title: Provenance
        checksums:
          additionalProperties:
            type: string
          type: object
          title: Checksums
        viewer_route:
          anyOf:
            - type: string
            - type: 'null'
          title: Viewer Route
      type: object
      required:
        - id
        - org_slug
        - slug
        - name
        - source
        - recipe
        - export_artifacts
        - provenance
        - checksums
      title: DerivedDatasetVersionManifest
    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
    DerivedDatasetSourceRef:
      properties:
        dataset_kind:
          type: string
          enum:
            - catalog
            - external
            - org
          title: Dataset Kind
          default: catalog
        dataset_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Dataset Id
        repo_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Repo Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        source_revision:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Revision
      type: object
      title: DerivedDatasetSourceRef
    DerivedDatasetRecipe:
      properties:
        selected_episode_indices:
          anyOf:
            - items:
                type: integer
              type: array
            - type: 'null'
          title: Selected Episode Indices
        excluded_episode_indices:
          items:
            type: integer
          type: array
          title: Excluded Episode Indices
        first_n_episodes:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: First N Episodes
        camera_keys:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Camera Keys
        crop:
          anyOf:
            - $ref: '#/components/schemas/DerivedCropRecipe'
            - type: 'null'
        resize:
          anyOf:
            - $ref: '#/components/schemas/DerivedResizeRecipe'
            - type: 'null'
        action:
          anyOf:
            - $ref: '#/components/schemas/DerivedActionTransformRecipe'
            - type: 'null'
        annotation_set_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Annotation Set Id
        annotation_set_version:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
          title: Annotation Set Version
        notes:
          anyOf:
            - type: string
              maxLength: 2000
            - type: 'null'
          title: Notes
      type: object
      title: DerivedDatasetRecipe
    DerivedDatasetArtifactManifest:
      properties:
        key:
          type: string
          title: Key
        label:
          type: string
          title: Label
        kind:
          type: string
          enum:
            - manifest
            - recipe
            - annotation_jsonl
            - lerobot
          title: Kind
        path:
          type: string
          title: Path
        media_type:
          type: string
          title: Media Type
        status:
          type: string
          enum:
            - planned
            - queued
            - running
            - ready
            - failed
            - canceled
          title: Status
          default: planned
        checksum_sha256:
          anyOf:
            - type: string
            - type: 'null'
          title: Checksum Sha256
        job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Job Id
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
      type: object
      required:
        - key
        - label
        - kind
        - path
        - media_type
      title: DerivedDatasetArtifactManifest
    DerivedCropRecipe:
      properties:
        left_pct:
          type: number
          maximum: 100
          minimum: 0
          title: Left Pct
        top_pct:
          type: number
          maximum: 100
          minimum: 0
          title: Top Pct
        width_pct:
          type: number
          maximum: 100
          exclusiveMinimum: 0
          title: Width Pct
        height_pct:
          type: number
          maximum: 100
          exclusiveMinimum: 0
          title: Height Pct
      type: object
      required:
        - left_pct
        - top_pct
        - width_pct
        - height_pct
      title: DerivedCropRecipe
    DerivedResizeRecipe:
      properties:
        width:
          type: integer
          maximum: 8192
          exclusiveMinimum: 0
          title: Width
        height:
          type: integer
          maximum: 8192
          exclusiveMinimum: 0
          title: Height
        mode:
          type: string
          enum:
            - fit
            - fill
            - stretch
          title: Mode
          default: fit
      type: object
      required:
        - width
        - height
      title: DerivedResizeRecipe
    DerivedActionTransformRecipe:
      properties:
        smoothing_window:
          anyOf:
            - type: integer
              maximum: 501
              minimum: 1
            - type: 'null'
          title: Smoothing Window
        smoothing_mode:
          anyOf:
            - type: string
              enum:
                - mean
                - median
            - type: 'null'
          title: Smoothing Mode
        clip_min:
          anyOf:
            - type: number
            - type: 'null'
          title: Clip Min
        clip_max:
          anyOf:
            - type: number
            - type: 'null'
          title: Clip Max
        scale:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
          title: Scale
      type: object
      title: DerivedActionTransformRecipe
  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.

````