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

# List API keys

> Get all API keys for the authenticated user

This endpoint returns a list of all API keys associated with the authenticated user's account.

### Response

<ResponseField name="api_keys" type="array">
  Array of API key objects

  <Expandable title="api_key properties">
    <ResponseField name="id" type="integer">
      The unique identifier of the API key
    </ResponseField>

    <ResponseField name="name" type="string">
      The name/label of the API key
    </ResponseField>

    <ResponseField name="last_used_at" type="string">
      ISO 8601 timestamp of when the API key was last used (null if never used)
    </ResponseField>

    <ResponseField name="created_at" type="string">
      ISO 8601 timestamp of when the API key was created
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null}
  {
    "api_keys": [
      {
        "id": 1,
        "name": "Production API Key",
        "last_used_at": "2025-01-08T15:30:00.000000Z",
        "created_at": "2025-01-01T10:00:00.000000Z"
      },
      {
        "id": 2,
        "name": "Development API Key",
        "last_used_at": null,
        "created_at": "2025-01-05T14:20:00.000000Z"
      }
    ]
  }
  ```

  ```json 200 Empty Response theme={null}
  {
    "api_keys": []
  }
  ```
</ResponseExample>

<Note>
  For security reasons, the actual API key tokens are not returned. Only metadata about the keys is shown.
</Note>
