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



## OpenAPI

````yaml /openapi.json get /api/v1/users/me/profile
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/profile:
    get:
      tags:
        - Users and tokens
      summary: Get user profile
      operationId: get_user_profile_api_v1_users_me_profile_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/WorkspaceUserProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    WorkspaceUserProfileResponse:
      properties:
        item:
          $ref: '#/components/schemas/WorkspaceUserProfile'
      type: object
      required:
        - item
      title: WorkspaceUserProfileResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WorkspaceUserProfile:
      properties:
        id:
          type: string
          title: Id
        email:
          anyOf:
            - type: string
              maxLength: 320
            - type: 'null'
          title: Email
        display_name:
          anyOf:
            - type: string
              maxLength: 200
            - type: 'null'
          title: Display Name
        title:
          anyOf:
            - type: string
              maxLength: 200
            - type: 'null'
          title: Title
        timezone:
          anyOf:
            - type: string
              maxLength: 100
            - type: 'null'
          title: Timezone
        default_project_org_slug:
          anyOf:
            - type: string
              maxLength: 160
            - type: 'null'
          title: Default Project Org Slug
        default_project_slug:
          anyOf:
            - type: string
              maxLength: 160
            - type: 'null'
          title: Default Project Slug
        notification_preferences:
          $ref: '#/components/schemas/WorkspaceNotificationPreferences'
      type: object
      required:
        - id
      title: WorkspaceUserProfile
    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
    WorkspaceNotificationPreferences:
      properties:
        transform_done:
          $ref: '#/components/schemas/WorkspaceNotificationChannel'
        export_ready:
          $ref: '#/components/schemas/WorkspaceNotificationChannel'
        team_invite:
          $ref: '#/components/schemas/WorkspaceNotificationChannel'
        episode_flag:
          $ref: '#/components/schemas/WorkspaceNotificationChannel'
        import_fail:
          $ref: '#/components/schemas/WorkspaceNotificationChannel'
        weekly_digest:
          $ref: '#/components/schemas/WorkspaceNotificationChannel'
      type: object
      title: WorkspaceNotificationPreferences
    WorkspaceNotificationChannel:
      properties:
        email:
          type: boolean
          title: Email
          default: true
        in_app:
          type: boolean
          title: In App
          default: true
      type: object
      title: WorkspaceNotificationChannel
  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.

````