> ## 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 API version



## OpenAPI

````yaml /openapi.json get /api/v1/version
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/version:
    get:
      tags:
        - Platform
      summary: Get API version
      operationId: version_api_v1_version_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformVersionResponse'
      security: []
components:
  schemas:
    PlatformVersionResponse:
      properties:
        api_version:
          type: string
          title: Api Version
        build_sha:
          type: string
          title: Build Sha
        contract_version:
          type: string
          title: Contract Version
        capabilities:
          items:
            type: string
          type: array
          title: Capabilities
      type: object
      required:
        - api_version
        - build_sha
        - contract_version
      title: PlatformVersionResponse

````