API Keys
Primary + secondary API key management. `POST /api-keys` and `DELETE /api-keys/{key_id}` are PRIMARY-KEY ONLY (a secondary key gets 403). The primary `Default` key cannot be revoked — rotate it via `POST /rotate-key`.
Primary + secondary API key management. POST /api-keys and DELETE /api-keys/{key_id} are PRIMARY-KEY ONLY (a secondary key gets 403). The primary Default key cannot be revoked — rotate it via POST /rotate-key.
| Method | Endpoint | Path |
|---|---|---|
GET | List API keys | /api-keys |
POST | Create a secondary API key | /api-keys |
DELETE | Revoke a secondary API key | /api-keys/{key_id} |
GET | Per-key usage detail | /api-keys/{key_id}/usage |
POST | Rotate your API key | /rotate-key |
Get request metrics for your panel GET
Request outcomes for your own panel over a time window: volume, status classes, error rate, latency, and the slowest and most error-prone routes. This is what the dashboard…
Rotate your API key POST
Rotate (regenerate) the caller's own API key. Authenticate with your current key. The old key dies immediately and the new key is returned once in the response body — store…