Developer platform
List API keys and usage
Returns metadata and usage for every Admin, TTS and STT key owned by the account. The caller must be an active account key with keyManagement enabled.
GET
/api/v1/keysOn this page
Code examples
curl https://studio.evomlabs.com/api/v1/keys -H "Authorization: Bearer vc_ak_live_YOUR_KEY"Request
Send the credential in the Authorization header. Account and voice keys are accepted only where the endpoint contract permits them.
Response
JSON
{
"ok": true,
"data": {
"account_usage": {
"tts": {"limit":500000,"used":1234,"remaining":498766,"unlimited":false},
"stt": {"limit":100000,"used":50,"remaining":99950,"unlimited":false},
"reset_date": "2026-09-01T00:00:00.000Z",
"reset_interval": "month",
"reset_interval_count": 1
},
"keys": {"admin":[],"tts":[],"stt":[]}
}
}Errors
REST failures use the documented error envelope. Handle the error code instead of matching the human-readable message.
Error codesWas this page helpful?