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

# List API keys

You can list all temporary API keys by sending a GET request to the temporary keys endpoint.

## Response

```json theme={"system"}
{
    "results": [
        {
            "id": "vcjRcdm8...",
            "name": "Keywords AI temporary key",
            "expiry_date": "2025-03-15T01:19:33.263343Z",
            "max_usage": -1,
        },
        {
            "id": "vcjRcdm8...",
            "name": "Keywords AI temporary key",
            "expiry_date": "2025-03-15T01:19:33.263343Z",
            "max_usage": -1,
        }
    ],
    "count": 0,
    "previous": null, // pagination
    "next": null, // pagination
    "current_filters": {}
}
```
