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

# Get User Info

> Get current user information.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /auth/me
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /auth/me:
    get:
      tags:
        - authentication
      summary: Get User Info
      description: Get current user information.
      operationId: get_user_info_auth_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserInfo'
      security:
        - HTTPBearer: []
components:
  schemas:
    UserInfo:
      properties:
        user_id:
          type: string
          title: User Id
        username:
          type: string
          title: Username
        owner_id:
          type: string
          title: Owner Id
        role:
          $ref: '#/components/schemas/UserRole'
          default: business
      type: object
      required:
        - user_id
        - username
        - owner_id
      title: UserInfo
      description: User info model.
    UserRole:
      type: string
      enum:
        - business
        - developer
        - admin
      title: UserRole
      description: User role enumeration.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````