Skip to content

List API keys

GET /api-keys

List all active API keys for the current account. Full tokens are never returned — only the prefix.

Terminal window
curl https://mail.3ava.com/api/api-keys \
-H "Authorization: Bearer am_YOUR_KEY"
{
"data": [
{
"id": "key_a1b2...",
"name": "production-api",
"permission": "sending_access",
"key_prefix": "am_HSjf",
"domain_id": null,
"rate_limit": 50,
"created_at": "2026-04-22T22:30:00Z",
"last_used_at": "2026-04-23T01:15:00Z"
}
]
}