> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chessa.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Current User

> Get the current user's information.



## OpenAPI

````yaml GET /v1/users/me
openapi: 3.0.3
info:
  title: Chessa Accounts API
  description: API collection for Chessa Accounts services
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.chessa.ai
security: []
tags:
  - name: User Endpoints
    description: Endpoints related to user management
  - name: Configuration Endpoints
    description: Endpoints for fetching application configurations
  - name: Recipient Endpoints
    description: Endpoints for managing recipients
  - name: Order Endpoints
    description: Endpoints for managing orders
  - name: Rate Endpoints
    description: Endpoints for exchange rates and fees
  - name: Referral Endpoints
    description: Endpoints for managing referrals
paths:
  /v1/users/me:
    get:
      tags:
        - User Endpoints
      summary: Get Current User
      description: Get the current user's information.
      operationId: getCurrentUser
      parameters:
        - name: x-client-id
          in: header
          schema:
            type: string
            example: ''
        - name: x-client-secret
          in: header
          schema:
            type: string
            example: ''
      responses:
        '200':
          description: Success Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  user:
                    type: object
                    properties:
                      createdAt:
                        type: string
                        example: '2025-01-15T10:30:45.123Z'
                      email:
                        type: string
                        example: john.doe@example.com
                      fullName:
                        type: string
                        example: John Doe
                      id:
                        type: string
                        example: a1b2c3d4-e5f6-7g8h-9i10-j11k12l13m14
                      numericTag:
                        type: number
                        example: 1234
                      referralCode:
                        type: string
                        example: john123
                      status:
                        type: string
                        example: active
                      timeZone:
                        type: string
                        example: Africa/Lagos
                      updatedAt:
                        type: string
                        example: '2025-03-12T14:22:18.456Z'
              examples:
                Success Response:
                  value:
                    user:
                      createdAt: '2025-01-15T10:30:45.123Z'
                      email: john.doe@example.com
                      fullName: John Doe
                      id: a1b2c3d4-e5f6-7g8h-9i10-j11k12l13m14
                      numericTag: 1234
                      referralCode: john123
                      status: active
                      timeZone: Africa/Lagos
                      updatedAt: '2025-03-12T14:22:18.456Z'
        '401':
          description: Error Response - Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: unauthorized
                  message:
                    type: string
                    example: Invalid client credentials
                  statusCode:
                    type: number
                    example: 401
              examples:
                Error Response - Unauthorized:
                  value:
                    error: unauthorized
                    message: Invalid client credentials
                    statusCode: 401

````