rate_limited
rate_limited
HTTP 429 — Rate limit exceeded.
Returned as application/problem+json with code rate_limited and HTTP status 429.
You have made too many requests in the current window.
The response includes a Retry-After header telling you how long to wait.
Common causes
- Request volume exceeded the limit for your API key.
How to resolve
- Wait for the
Retry-Afterinterval (seconds), then retry. - Back off on repeated 429s — the official SDKs do this automatically.
Example
This error is typically transient — safe to retry with exponential backoff.
See also: rate-limits.