API Keys

List API keys

Retrieve metadata for the workspace's API keys. Secrets are never returned after creation — only a masked `secretHint`.

GET
/api-keys

Retrieve metadata for the workspace's API keys. Secrets are never returned after creation — only a masked secretHint.

Authorization

ApiKeyAuth
X-API-Key<token>

Voice platform authentication secret. Create one from the API Keys endpoint or your dashboard.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/api-keys"
{  "data": [    {      "id": "key_01h",      "name": "Production server",      "scopes": [        "*"      ],      "secretHint": "bvk_live_…9fq",      "isActive": true    }  ]}
{  "statusCode": 401,  "message": "Unauthorized",  "error": "Unauthorized"}