Skip to main content
GET
https://app.autocalls.ai/api/
/
user
/
api-keys
List API keys
curl --request GET \
  --url https://app.autocalls.ai/api/user/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ]
}
This endpoint returns a list of all API keys associated with the authenticated user’s account.

Response

api_keys
array
Array of API key objects
{
  "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"
    }
  ]
}
For security reasons, the actual API key tokens are not returned. Only metadata about the keys is shown.