Skip to main content

API key header

Send your API key on every request in the x-api-key header:
Requests with a missing, unrecognised, or revoked key are rejected with a 401 response.

Unauthenticated endpoint

GET /api/v1/health is the one exception: it takes no key and returns no scope requirement, so a caller can tell an outage apart from a credential problem.

401 — authentication errors

Scopes

Every API key is granted one or more scopes. An endpoint that requires a scope your key does not have returns 403 insufficient_scope. GET /api/v1/health requires no scope.

403 — authorization errors