API Keys
List API keys
List the API keys for the tenant. Tokens are masked in this response — the full token is only returned when you create or rotate a key. Callers without API-key management permission see only their own key. The response is a bare JSON array ordered by most recent creation time.
get/v1/api-keys
Response
A bare JSON array of API key objects (tokens masked).
Example response
[
{
"uuid": "d1e2f3a4-b5c6-7d80-9e1f-2a3b4c5d6e7f",
"name": "default",
"environment": "sandbox",
"role": "owner",
"created_at": "2026-07-02T23:51:58.746686+00:00",
"member_email": "dev@acme.example",
"token_last4": "s9Zx",
"masked": "sk_••••••••s9Zx"
}
]