> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get API Keys

> List all API keys

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

## Response

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

<ResponseField name="api_keys[].id" type="string">
  API key ID
</ResponseField>

<ResponseField name="api_keys[].name" type="string">
  API key name
</ResponseField>

<ResponseField name="api_keys[].key" type="string">
  API key (masked)
</ResponseField>

<ResponseField name="api_keys[].created_at" type="string">
  Creation timestamp
</ResponseField>

<ResponseField name="api_keys[].last_used" type="string">
  Last used timestamp
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/developer/api \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const apiKeys = await client.getApiKeys();
  ```

  ```python Python theme={null}
  api_keys = client.get_api_keys()
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "api_keys": [
      {
        "id": "key-123",
        "name": "Production Key",
        "key": "sk_live_**********************abc",
        "created_at": "2026-01-15T10:00:00Z",
        "last_used": "2026-01-29T11:30:00Z"
      }
    ]
  }
  ```
</ResponseExample>
