Skip to main content
The base ratelimit is 20 requests per 10 seconds. Do not hardcode any values— instead, use the following headers which are found in every response:
X-RateLimit-Limit
number
The amount of requests allowed before hitting the ratelimit.
X-RateLimit-Remaining
number
The number of remaining requests that can be made before hitting the ratelimit.
X-RateLimit-Reset
number
The epoch timestamp (in seconds) of when the ratelimit will reset.
The following body is also provided when the ratelimit is hit:
429 Response
{
  "code": 429,
  "message": "Too many requests, please try again later."
}