Rate limiting
429 Too Many Requests
HTTP status code.Rate limit headers
Header | Description |
---|---|
Retry-After | Number of seconds to wait before retrying |
X-RateLimit-Limit | Max requests allowed per time window |
X-RateLimit-Remaining | Remaining requests in the current time window |
X-RateLimit-Reset | Time when the rate limit resets (in UNIX time) |
Rate limit response
429 Too Many Requests
HTTP status code.{
"error": "rate_limit_exceeded",
"message": "Too many requests. Please try again later.",
"status": 429
}
429 Too Many Requests
use the Retry-After
header to know how long to wait before making another request.Modified at 2025-05-22 08:48:47