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 |
---|---|
| Success |
| Too many requests from rate limiting |
And the following headers
Response header | Description |
---|---|
| The maximum number of requests that the consumer is permitted to make per minute (by default 300 per minute). |
| The number of requests remaining in the current rate limit window. |
| 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