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
{
"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
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Authentication
Learn how to authenticate your API requests
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →