Rate Limiting
All API requests are rate limited to prevent overloading server resources.
The following limits apply
Per | #Requests |
---|---|
Second | 10 |
Minute | 120 |
Hour | 2400 |
Day | 57600 |
Week | 403200 |
When you exceed the limit, you will receive a HTTP Status code of 429 (Too Many Requests) in response. The response may also contain extra information about how you have been limited (eg which limit has been exceeded).
After a limit is hit, the caller must wait till the next limit block starts before the limit is not exceeded. For example, if one were to issue 11 requests within a second (00:01) they would get blocked, but would be able to issue requests in the next second (00:02). Or, if the requester issued 120 requests within a minute they would need to wait till the following minute before issuing more requests.