Documentation

Default Rate limit

In order to control the usage of our service, there is a rate limit of 30 requests per minute. Every request will expose the limitation and the remaining requests.

HTTP/1.1 200 OK
X-RateLimit-Limit: 30
X-RateLimit-Remaining: 22
...

{
  "data": [
     ...
  ],
  ...
}

Requests are limited to 30 requests per minute per account. All users associated with the same account count against the same minute rate limit. The response status 429 is returned when the throttle limit has been reached.

Write requests (POSTPUTDELETEPATCH) count as 2 requests toward the rate limit.

Header name

 

X-RateLimit-Limit

Maximum number of requests per interval

X-RateLimit-Remaining

Number of requests remaining in the current rate limit interval

General Response Structure

Customers