Signals. Infra
Error types

API key revoked

HTTP 401 · `revoked-key` — what it means and what to do about it.

HTTP 401 · type: https://docs.signals.ai/errors/revoked-key

The key was valid but has been revoked, or it has passed its expires_at.

What to do

Mint a new key and roll it into your secret store. Revocation is immediate and cannot be undone; the old value will never work again.

The response shape

Every error is RFC 9457 application/problem+json and carries a request_id, which is also returned as the X-Request-Id header on every response, success or failure. Quote it when contacting support.

{
  "type": "https://docs.signals.ai/errors/revoked-key",
  "title": "API key revoked",
  "status": 401,
  "detail": "…",
  "request_id": "req_9f2c…",
  "instance": "/v1/…"
}

See all error types for the full catalog.

On this page