Skip to main content

Rate Limiting

In order to prevent abuse, all calls to the API are subject to a rate limit of 30 calls per every 60 seconds.

When a client has exceeded the number of API calls available during a rate limit window, all future requests will return a HTTP 429 status code.

All requests that are subject to rate limiting include the following headers that provide information about the current rate limit and the rate-limit window:

Header NameDescription
X-RateLimit-LimitThe total number of requests that can be made during a rate-limit period.
X-RateLimit-RemainingThe number of requests that may still be made before the rate limit is reset.
X-RateLimit-ResetThe number of seconds before the rate limit is reset.