Rate limits

Let's slow down...

We impose the following rate limits for API requests:

LimitApplicable for
10 calls per second *All plans
1000 calls per dayTest plan
10000 calls per monthTest plan

* - all requests except /api/upload(limit 100 calls per second)

Learn more about the billing plans on Developer Billing Plans.

It is possible to find the status of the limit counter for the current API request in the response headers:

X-Rate-Limit-Limit:  1s  
X-Rate-Limit-Remaining:  98  
X-Rate-Limit-Reset:  2024-05-08T07:43:46.0000000Z

If you reach the rate limit, you will receive a 429 error message stating "Too many requests" and the response body will look like this:

{ 
  "message": "Rate limit quota exceeded",
  "details": 
  { 
    "limit": 1000, 
    "period": "1d",
    "retryAfter":"1h"
  } 
}