Limits per time period
Rate limits apply to all endpoints. The maximum number of calls allowed in a given period is as follows:Time period | Maximum number of API calls allowed |
---|---|
15 minutes | 2,300 |
30 minutes | 4,500 |
1 hour | 8,800 |
24 hours | 105,600 |
Rate limit reached – Response example
NoteIf you frequently encounter issues related to rate limiting, please contact the Support team via the Dashboard to make sure your integration is appropriate, or to increase your rate limits.
Response header information
The response header of all API calls provides useful information regarding the rate limit:x-ratelimit
indicates the number of API calls you have made.x-ratelimit-remaining
indicates the number of API calls you have left before reaching the limit.x-ratelimit-reset
indicates how long you have to wait until reset (in timestamp format).
- X-RateLimit: 63015, 121914, 228534, 7103921.
- X-RateLimit-Remaining: 436985, 878086, 1771466, 40896079.
- X-RateLimit-Reset: 1715241060, 1715241960, 1715243760, 1715326500
- Automatically stop sending requests once the limit has been reached and then start making requests again at the
x-ratelimit-reset
time - Automatically set pauses in between calls to ensure you don’t go over the limit
API implementation best practices
An implementation can be optimized to avoid reaching the rate limits. The following oversights commonly increase the risk of exceeding the rate limit:- Failed requests being indefinitely retried
- Systematic GET requests without the platform storing or caching the corresponding information
- GET requests made daily while they could be made at a larger interval (weekly, monthly)
- Requests triggered on a fixed interval while they could be triggered after the corresponding POST request has been made instead