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

# List Api Keys

> List all API keys for the current workspace.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/api-keys/
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/api-keys/:
    get:
      tags:
        - v1
        - protected
        - api-keys
      summary: List Api Keys
      description: List all API keys for the current workspace.
      operationId: list_api_keys_v1_api_keys__get
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/APIKeyResponse'
                title: Response List Api Keys V1 Api Keys  Get
                type: array
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  schemas:
    APIKeyResponse:
      properties:
        access_count:
          title: Access Count
          type: integer
        created_at:
          title: Created At
          type: string
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Expires At
        id:
          format: uuid
          title: Id
          type: string
        is_active:
          title: Is Active
          type: boolean
        last_accessed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Accessed At
        name:
          title: Name
          type: string
        token_prefix:
          title: Token Prefix
          type: string
      required:
        - id
        - name
        - token_prefix
        - is_active
        - expires_at
        - access_count
        - last_accessed_at
        - created_at
      title: APIKeyResponse
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````