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

# Get Agent Preferences

> Get the current user's agent preferences.



## OpenAPI

````yaml /api-reference/openapi.json get /users/me/agent-preferences
openapi: 3.1.0
info:
  title: Aspect Platform API
  description: A FastAPI application for Aspect Platform functionality
  version: 0.0.0
servers:
  - url: https://api.aspect.inc
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /users/me/agent-preferences:
    get:
      tags:
        - Users
      summary: Get Agent Preferences
      description: Get the current user's agent preferences.
      operationId: get_Users_users_me_agent_preferences
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentPreferences'
components:
  schemas:
    AgentPreferences:
      properties:
        tool_approvals:
          additionalProperties:
            $ref: '#/components/schemas/AgentToolApprovalBehavior'
          type: object
          title: Tool Approvals
          description: Approval behavior keyed by agent tool name
      type: object
      title: AgentPreferences
      description: Per-user preferences for agent behavior.
    AgentToolApprovalBehavior:
      type: string
      enum:
        - always_ask
        - always_allow
      title: AgentToolApprovalBehavior
      description: User preference for approval-gated agent tool calls.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT in Authorization header. 'Bearer ' prefix optional.
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Aspect API key (sk_...) in Authorization header. 'Bearer ' optional.

````