Rate limiting
Last updated
Last updated
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 |
---|---|
And the following headers
Response header | Description |
---|---|
Here is an example in python to handle rate limiting
200
Success
429
Too many requests from rate limiting
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.