Rate limits
Rate limits
If you exceed your rate limit you will receive a 429 error response with a "Too Many Attempts" message. If you think you will be hitting these limits, please implement a backoff strategy that would even out the requests over time.
Rate limit headers
Each API request comes back with headers related specifically to rate limiting.
Header
Meaning
X-RateLimit-Limit
The maximum number of API requests that the user can make per minute.
X-RateLimit-Remaining
The remaining number of API requests that the user can make per minute.
X-RateLimit-Reset
A timestamp indicating when the remaining limit resets.
Last updated