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

# Get authenticated user details

> Get detailed information about the currently authenticated user.



## OpenAPI

````yaml /openapi/rag-users/get-current-user.json GET /api/r2r/v3/users/me
openapi: 3.1.0
info:
  title: IO Intelligence
  version: '1.0'
servers:
  - url: https://api.intelligence.io.solutions
security:
  - sec0: []
paths:
  /api/r2r/v3/users/me:
    get:
      summary: Get authenticated user details
      description: Get detailed information about the currently authenticated user.
      operationId: get-current-user
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    results:
                      id: id
                      email: email
                      is_active: true
                      is_superuser: true
                      created_at: '2024-01-15T09:30:00Z'
                      updated_at: '2024-01-15T09:30:00Z'
                      is_verified: true
                      collection_ids:
                        - collection_ids
                      graph_ids:
                        - graph_ids
                      document_ids:
                        - document_ids
                      limits_overrides:
                        key: value
                      metadata:
                        key: value
                      verification_code_expiry: '2024-01-15T09:30:00Z'
                      name: name
                      bio: bio
                      profile_picture: profile_picture
                      total_size_in_bytes: 1
                      num_files: 1
                      account_type: account_type
                      hashed_password: hashed_password
                      google_id: google_id
                      github_id: github_id
              schema:
                type: object
                properties:
                  results:
                    type: object
                    properties:
                      id:
                        type: string
                        example: id
                      email:
                        type: string
                        example: email
                      is_active:
                        type: boolean
                        example: true
                        default: true
                      is_superuser:
                        type: boolean
                        example: true
                        default: true
                      created_at:
                        type: string
                        example: '2024-01-15T09:30:00Z'
                      updated_at:
                        type: string
                        example: '2024-01-15T09:30:00Z'
                      is_verified:
                        type: boolean
                        example: true
                        default: true
                      collection_ids:
                        type: array
                        items:
                          type: string
                          example: collection_ids
                      graph_ids:
                        type: array
                        items:
                          type: string
                          example: graph_ids
                      document_ids:
                        type: array
                        items:
                          type: string
                          example: document_ids
                      limits_overrides:
                        type: object
                        properties:
                          key:
                            type: string
                            example: value
                      metadata:
                        type: object
                        properties:
                          key:
                            type: string
                            example: value
                      verification_code_expiry:
                        type: string
                        example: '2024-01-15T09:30:00Z'
                      name:
                        type: string
                        example: name
                      bio:
                        type: string
                        example: bio
                      profile_picture:
                        type: string
                        example: profile_picture
                      total_size_in_bytes:
                        type: integer
                        example: 1
                        default: 0
                      num_files:
                        type: integer
                        example: 1
                        default: 0
                      account_type:
                        type: string
                        example: account_type
                      hashed_password:
                        type: string
                        example: hashed_password
                      google_id:
                        type: string
                        example: google_id
                      github_id:
                        type: string
                        example: github_id
        '404':
          description: '404'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
        '422':
          description: '422'
          content:
            text/plain:
              examples:
                Result:
                  value: ''
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: oauth2
      flows: {}

````