Skip to content

Rate Limits

Every response includes three headers showing your current rate limit status:

HeaderMeaning
x-ratelimit-limitMaximum requests allowed in the current window.
x-ratelimit-remainingRequests remaining in the current window.
x-ratelimit-resetSeconds until the window resets.

Currently the limit is 30 requests per minute per API key across all endpoints.

When you exceed the limit you’ll receive 429 Too Many Requests.

Back off until x-ratelimit-reset elapses, then retry.

Response: 429 Too Many Requests

{
"status": "error",
"message": "Too many requests. Please try again later.",
"errors": {
"rate_limit": "Too many requests. Please try again later."
}
}