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

# List Api Keys

> List the active API keys of the caller's organization.

Secrets are never included — they exist only in the creation
response.

Returns:
    Active API keys belonging to the caller's organization.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json get /api-keys
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /api-keys:
    get:
      tags:
        - api-keys
      summary: List Api Keys
      description: |-
        List the active API keys of the caller's organization.

        Secrets are never included — they exist only in the creation
        response.

        Returns:
            Active API keys belonging to the caller's organization.
      operationId: api-keys-list_api_keys
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ApiKey'
                type: array
                title: Response Api-Keys-List Api Keys
components:
  schemas:
    ApiKey:
      properties:
        id:
          type: string
          title: Id
          description: Unique key identifier.
        name:
          type: string
          title: Name
          description: Human-readable label supplied at creation.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the key was created.
        last_used_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Used At
          description: >-
            When the key last authenticated a request, or null when it has never
            been used.
      type: object
      required:
        - id
        - name
        - created_at
        - last_used_at
      title: ApiKey
      description: |-
        API key metadata, without the secret.

        Attributes:
            id: Unique key identifier.
            name: Human-readable label supplied at creation.
            created_at: When the key was created.
            last_used_at: When the key last authenticated a request, or
                None when it has never been used.

````