HTTP 403authorization
Insufficient scope
insufficient_scope
What it means
The API key is valid but lacks the scope required to call this endpoint.
Common causes
- Key was issued with a reduced scope list (e.g. only `check` but you're calling `/v1/webhooks`).
- Endpoint requires a newer scope (`webhook`) that the key predates.
How to fix
- Mint a new key at /account/api-keys with the scope you need.
- Confirm scopes with `GET /api/v1/whoami` — the `scopes` array shows what the key has.
Example
// GET /api/v1/whoami response includes
{ "scopes": ["check", "formula", "pathway", "scan", "webhook"], … }