Rate limiting
You can make 300 requests per minute to each API in our system. Check the returned HTTP headers of any API request to see your current rate limit status. When you reached your rate limit, the API will return 429
status code
By default we return the following status codes
Status code
Description
200
Success
429
Too many requests from rate limiting
And the following headers
Response header
Description
X-RateLimit-Limit
The maximum number of requests that the consumer is permitted to make per minute (by default 300 per minute).
X-RateLimit-Remaining
The number of requests remaining in the current rate limit window.
X-RateLimit-Reset
The number of seconds to wait until the rate limit window resets. This header is sent for each response.
Here is an example in python to handle rate limiting
Last updated