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



## OpenAPI

````yaml /openapi.json get /api/v1/catalog/datasets
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/catalog/datasets:
    get:
      tags:
        - Catalog
      summary: List datasets
      operationId: list_datasets_catalog_v1_api_v1_catalog_datasets_get
      parameters:
        - name: query
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                minLength: 1
              - type: 'null'
            title: Query
        - name: catalog_group
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Catalog Group
        - name: provider
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Provider
        - name: limit
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                maximum: 200
                minimum: 1
              - type: 'null'
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatasetListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security: []
components:
  schemas:
    DatasetListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/DatasetListItem'
          type: array
          title: Items
      type: object
      required:
        - items
      title: DatasetListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DatasetListItem:
      properties:
        id:
          type: string
          title: Id
        slug:
          type: string
          title: Slug
        title:
          type: string
          title: Title
        provider:
          type: string
          title: Provider
        vendor:
          anyOf:
            - type: string
            - type: 'null'
          title: Vendor
        source_label:
          type: string
          title: Source Label
        description_hint:
          type: string
          title: Description Hint
        catalog_group:
          anyOf:
            - type: string
            - type: 'null'
          title: Catalog Group
        tags:
          items:
            type: string
          type: array
          title: Tags
        source_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Url
        hf_repo_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Hf Repo Id
        downloads:
          anyOf:
            - type: integer
            - type: 'null'
          title: Downloads
        likes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Likes
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - id
        - slug
        - title
        - provider
        - source_label
        - description_hint
      title: DatasetListItem
    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

````