All error codes
rate_limitedHTTP 429Retryable

rate_limited

The request exceeded the configured rate limit.

Stable URL: https://docs.statxe.com/api/errors/rate_limited

How to resolve

  • Honor the Retry-After header (seconds) before retrying.
  • Use exponential backoff with jitter for bursts.

Example response

{
  "ok": false,
  "error": {
    "code": "rate_limited",
    "message": "The request exceeded the configured rate limit.",
    "docs_url": "https://docs.statxe.com/api/errors/rate_limited"
  },
  "meta": {
    "request_id": "req_example123"
  }
}

See also Errors & rate limits guide.