Default Rate Limits
Our API enforces the following default rate limits:- Production environment: 60 requests per second
- Sandbox environment: 5 requests per second
Rate Limit Exceeded
When an account exceeds the allowed rate limit, our API will respond with a429 status code, indicating that the rate limit has been reached. This response will be accompanied by a message in the body, providing more information about the exceeded rate limit.
Example
A sample response when the rate limit has been exceeded:Handling Rate Limit Exceeded Errors
When receiving a429 status code in response to an API request, it is crucial to implement a back-off strategy in your application. This may include:
- Retrying the request after a short delay
- Implementing an exponential back-off algorithm to gradually increase the delay between retries
- Using a queue system to manage requests and distribute them evenly over time

