VoxLink.ai

API Reference

List API keys

Get all API keys for the authenticated user

Updated 25 Jan 2026

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

Response

api_keysarray

Array of API key objects

idinteger

  The unique identifier of the API key

namestring

  The name/label of the API key

last_used_atstring

  ISO 8601 timestamp of when the API key was last used (null if never used)

created_atstring

  ISO 8601 timestamp of when the API key was created
{
  "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"
    }
  ]
}
{
  "api_keys": []
}

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

Related guides