Skip to main content

Limits


Rate Limits

Rate limits are meant to avoid usage spikes that could affect the system availability, by preventing applications from sending too many requests in a short span of time.

IntervalLimit
1 minute60 requests

If the limit is exceeded, the API endpoint returns a 429 Too many Requests HTTP status code.

In the header of all API responses you can always see how many requests you have left in this interval and an epoch timestamp to let you know when the counter will be reset. The api rate limit informations in the header will look like this:

{
"x-rate-limit-limit": "60",
"x-rate-limit-remaining": "59",
"x-rate-limit-reset": "1724334178"
}