List the company's API keys (keys:admin)
GET/api/v1/keys
Required scope: keys:admin. Safe projection only — key hashes and
signing-secret references are structurally excluded and can never be
re-revealed.
Responses
- 200
- 401
- 403
- 429
- 503
The company's keys (all statuses).
Missing or invalid API key
403 — missing scope (FORBIDDEN_SCOPE) or module (FORBIDDEN_MODULE).
429 — RATE_LIMITED (per-key limit, reads and writes alike; fails closed,
so a limiter outage also returns 429). A limiter-down 429 is deliberately
indistinguishable from a quota 429. Carries Retry-After (seconds).
Response Headers
Retry-After
Seconds to wait before retrying (429 only).
RateLimit-Limit
Per-minute request ceiling for this key's tier.
RateLimit-Remaining
Requests left in the current window (floored at 0).
RateLimit-Reset
Seconds until the window resets.
503 — the API is not enabled on this environment (FEATURE_DISABLED).