rate_limited
Rate limited โ HTTP 429 ยท type rate_limit_error
What happened
You've sent too many requests in a window. The `Retry-After` header says how long to wait.
How to fix it
Back off for the `Retry-After` seconds, then retry. Add client-side rate limiting for sustained load.
Example response
{
"error": {
"type": "rate_limit_error",
"code": "rate_limited",
"message": "A human-readable description of what went wrong.",
"doc_url": "https://docs.interglobe.io/errors/rate_limited"
},
"request_id": "req_1a2b3c"
}