Rate Limiting

Our API is protected by a per-IP rate limit of 300 requests every 5 minutes. Exceeding the rate limit will cause all requests to return a 429 HTTP code and the following JSON body:

{
"code": 429,
"error": "Rate limit exceeded."
}

This value is continually evaluated, and requests will be blocked once this limit is reached. The IP address is automatically unblocked after it falls below the limit.