API ERRORS

429 Research budget exceeded

https://sealdeal.ai/errors/research-budget-exceeded

The organization hit its daily cap on new research runs. This is a different 429 from the request rate limit.

Safe to retry after a backoff

What causes it

  • The daily research cap has been reached. `detail` reports used and cap.

How to fix it

  • Wait for the daily reset, or read the cached dossier with GET /contacts/{id}/research instead of forcing a fresh run.
  • Do not treat this as the request rate limit: it carries no Retry-After, and backing off by seconds will not help.

Example response

HTTP/1.1 429
Content-Type: application/problem+json

{
  "type": "https://sealdeal.ai/errors/research-budget-exceeded",
  "title": "Research budget exceeded",
  "status": 429,
  "detail": "..."
}

`type` is stable and safe to branch on in code. `detail` is specific to your request and is the field to read for the particulars; its wording may change.

All error types · API documentation · Integrations

Related errors: 429 Rate limit exceeded