Rate Limit
To maintain the quality of service and guarantee fair usage for all our customers, we have implemented a rate limiting of 25 requests per second per application across all endpoints.
Rate limits are subject to change, it is recommended to check the following headers on each response :
RateLimit-Limit
- The number of allowed requests in the current periodRateLimit-Remaining
- The number of remaining requests in the current periodRateLimit-Reset
- The time remaining (in seconds) until the quota is reset
RateLimit-Limit: 25
RateLimit-Remaining: 24
RateLimit-Reset: 1
Exceeding this limit will result in a HTTP 429 response.
Updated over 1 year ago