> ## 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 current user



## OpenAPI

````yaml /openapi.json get /api/v1/users/me
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/users/me:
    get:
      tags:
        - Users and tokens
      summary: Get current user
      operationId: get_me_api_v1_users_me_get
      parameters:
        - 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/WorkspaceMeResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceMeResponse:
      properties:
        user:
          $ref: '#/components/schemas/WorkspaceUser'
      type: object
      required:
        - user
      title: WorkspaceMeResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WorkspaceUser:
      properties:
        id:
          type: string
          title: Id
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        org_slugs:
          items:
            type: string
          type: array
          title: Org Slugs
        org_member_slugs:
          items:
            type: string
          type: array
          title: Org Member Slugs
        org_admin_slugs:
          items:
            type: string
          type: array
          title: Org Admin Slugs
        projects:
          items:
            $ref: '#/components/schemas/WorkspaceProjectMembership'
          type: array
          title: Projects
      type: object
      required:
        - id
      title: WorkspaceUser
    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
    WorkspaceProjectMembership:
      properties:
        org_slug:
          type: string
          title: Org Slug
        project_slug:
          type: string
          title: Project Slug
        role:
          type: string
          title: Role
      type: object
      required:
        - org_slug
        - project_slug
        - role
      title: WorkspaceProjectMembership
  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.

````