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

# List Api Keys

> List all API keys for the current user (masked).

Returns key prefix and last 4 characters for identification.



## OpenAPI

````yaml /openapi.json get /v1/users/me/api-keys
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/users/me/api-keys:
    get:
      tags:
        - users
      summary: List Api Keys
      description: |-
        List all API keys for the current user (masked).

        Returns key prefix and last 4 characters for identification.
      operationId: list_api_keys_v1_users_me_api_keys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ApiKeyListItem'
                type: array
                title: Response List Api Keys V1 Users Me Api Keys Get
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiKeyListItem:
      properties:
        id:
          type: string
          title: Id
          description: Key identifier (UUID).
        name:
          type: string
          title: Name
          description: Label assigned to this key.
        key_prefix:
          type: string
          title: Key Prefix
          description: First 7 characters of the key (e.g., 'sk_a1b2').
        last_four:
          type: string
          title: Last Four
          description: Last 4 characters of the key for identification.
        is_active:
          type: boolean
          title: Is Active
          description: Whether the key is active. Revoked keys show as false.
        created_at:
          type: string
          title: Created At
          description: ISO 8601 timestamp when the key was created.
        last_used_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Used At
          description: ISO 8601 timestamp of last use, or null if never used.
      type: object
      required:
        - id
        - name
        - key_prefix
        - last_four
        - is_active
        - created_at
      title: ApiKeyListItem
      description: API key summary (masked for security).
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````