Explore the limitations and guidelines
429 Too Many Requests
response.
429 Too Many Requests
response isn’t an issue. You can just send it again in a minute or so. However, if you receive this error regularly, then you should adjust your integration so that it backs off.
Header | Description |
---|---|
X-RateLimit-Limit | The number of requests that can be sent per minute. |
X-RateLimit-Remaining | The number of requests that can be sent this minute. |
Header | Description |
---|---|
Retry-After | Seconds remaining until new requests can be sent. |
X-RateLimit-Reset | The unix timestamp when new requests can be sent. |
X-RateLimit-Remaining
to avoid hitting the rate limit. If you don’t have any requests available, then there is no point sending one, as it will return a 429 Too Many Requests
response.
If you hit the rate limit / receive a 429 Too Many Requests
response, then you can use Retry-After
or X-RateLimit-Reset
to determine when it is suitable to send additional requests to the API.