> ## 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 a project dataset



## OpenAPI

````yaml /openapi.json get /api/v1/orgs/{org_slug}/projects/{project_slug}/datasets/{dataset_slug}
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}/projects/{project_slug}/datasets/{dataset_slug}:
    get:
      tags:
        - Project datasets
      summary: Get a project dataset
      operationId: >-
        get_project_dataset_api_v1_orgs__org_slug__projects__project_slug__datasets__dataset_slug__get
      parameters:
        - name: org_slug
          in: path
          required: true
          schema:
            type: string
            title: Org Slug
        - name: project_slug
          in: path
          required: true
          schema:
            type: string
            title: Project Slug
        - name: dataset_slug
          in: path
          required: true
          schema:
            type: string
            title: Dataset 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/WorkspaceDatasetResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceDatasetResponse:
      properties:
        item:
          $ref: '#/components/schemas/WorkspaceDataset'
      type: object
      required:
        - item
      title: WorkspaceDatasetResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WorkspaceDataset:
      properties:
        id:
          type: string
          title: Id
        org_slug:
          type: string
          title: Org Slug
        project_slug:
          type: string
          title: Project Slug
        slug:
          type: string
          title: Slug
        title:
          type: string
          title: Title
        source_kind:
          type: string
          title: Source Kind
        source_uri:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Uri
        visibility:
          type: string
          enum:
            - public
            - project
            - private
          title: Visibility
        read_model_path:
          anyOf:
            - type: string
            - type: 'null'
          title: Read Model Path
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - id
        - org_slug
        - project_slug
        - slug
        - title
        - source_kind
        - visibility
      title: WorkspaceDataset
    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.

````