rate_limited

Rate limit exceeded

HTTP status: 429 Retryable: Yes

Description

You have sent too many requests in a short time window. The API enforces per-key rate limits to ensure fair usage across all customers.

Resolution

Wait for the duration indicated by the Retry-After response header before sending further requests. Implement exponential backoff in your client to avoid repeatedly hitting the rate limit.

Example response

{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests, please slow down",
    "occurredAt": "2026-02-10T10:00:00Z",
    "requestId": "req_abc123xyz",
    "status": 429
  }
}