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

# Get authenticated user context.

> Returns current user profile fields and recent chat thread
summaries.



## OpenAPI

````yaml api/openapi.json get /api/me
openapi: 3.0.2
info:
  contact:
    name: OpenAgents
    url: https://openagents.com
  description: >-
    OpenAgents REST API (Laravel). Primary auth is Sanctum bearer tokens for
    /api endpoints.
  title: OpenAgents API
  version: 1.0.0
servers:
  - description: Primary production server
    url: https://openagents.com
security:
  - SanctumToken: []
tags:
  - description: Authentication context and token lifecycle endpoints.
    name: Auth
  - description: Conversation, run, and stream endpoints.
    name: Chat
  - description: Autopilot resources, thread scoping, and stream alias routes.
    name: Autopilot
  - description: Authenticated profile management endpoints.
    name: Profile
  - description: Global public broadcast messages, optionally scoped by zone.
    name: Shouts
  - description: Direct messages between two users, inbox and thread retrieval.
    name: Whispers
  - description: Lightning L402 wallet, receipts, and deployment telemetry endpoints.
    name: L402
  - description: >-
      Per-user Spark wallet lifecycle and payment APIs (invoice + pay + spark
      transfers).
    name: Agent Payments
paths:
  /api/me:
    get:
      tags:
        - Auth
      summary: Get authenticated user context.
      description: |-
        Returns current user profile fields and recent chat thread
        summaries.
      parameters:
        - description: Maximum number of recent chat threads to include.
          in: query
          name: chat_limit
          required: false
          schema:
            example: 50
            maximum: 200
            minimum: 1
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    properties:
                      chatThreads:
                        items:
                          properties:
                            id:
                              type: string
                            title:
                              type: string
                            updatedAt:
                              format: date-time
                              nullable: true
                              type: string
                          type: object
                        type: array
                      user:
                        properties:
                          avatar:
                            nullable: true
                            type: string
                          createdAt:
                            format: date-time
                            nullable: true
                            type: string
                          email:
                            type: string
                          handle:
                            nullable: true
                            type: string
                          id:
                            type: integer
                          name:
                            type: string
                          updatedAt:
                            format: date-time
                            nullable: true
                            type: string
                        type: object
                    type: object
                type: object
          description: Authenticated user profile and quick chat thread summary
        '401':
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: Unauthenticated.
                    type: string
                type: object
          description: Authentication required
components:
  securitySchemes:
    SanctumToken:
      bearerFormat: Sanctum PAT
      scheme: bearer
      type: http

````