Overview
Rate limits specify the number of API requests a client can make within a certain period. If this limit is exceeded, subsequent requests will be temporarily blocked. We apply limits based on token bucket method.Default Limits
Our rate limit is structured as follows :- Bucket : 500 requests
- Re-fill rate : 4 tokens per second
Checking Your Limit Status
We provide informations in the response headers of every API call. About your current rate limit status :X-RateLimit-Limit: The maximum number of requests allowed in token pool.X-RateLimit-Remaining: The number of requests remaining in the current window.
X-RateLimit-Rate-Amount: The number of seconds before you can make a request again.X-RateLimit-Rate-Interval: The number of seconds before you can make a request again.
Exceeding the Limit
If you make too many requests in a short period and exceed your limit, the API will stop processing your requests and respond with anHTTP 429 Too Many Requests error code.
We will include a Retry-After header indicating how many seconds you should wait before making another request :