API Keys
List API keys
Returns the API keys belonging to the authenticated account.
get/v1/api-keys
Query parameters
labelstring
Filters API keys by label. Matches partial values.
Response
Returns the list of API keys.
Example response
[
{
"id": 123,
"label": "Production API Key",
"value": "abc123def456ghi789jkl012mno345pqr678stu901vwx234yz",
"active": true,
"restricted": true,
"permitted_ips": [
"192.168.1.1",
"10.0.0.1"
],
"scopes_enabled": true,
"last_used_at": "2026-04-20T15:42:11Z",
"numbers": {
"allow": "read"
},
"trunks": {
"allow": "read"
},
"calls": {
"allow": "read"
},
"messages": {
"allow": "read"
},
"recordings": {
"allow": "read"
},
"campaigns": {
"allow": "read"
},
"two_fa": {
"allow": "read"
},
"validator": {
"allow": "read"
},
"webhooks": {
"allow": "read"
},
"embeddable": {
"allow": "read"
},
"billing": {
"allow": "read"
},
"account": {
"allow": "read"
},
"subaccounts": {
"allow": "read"
},
"created_at": "2024-01-15T10:30:00Z"
}
]