X-RateLimit-Limit
: The maximum number of requests you can make per minute.X-RateLimit-Remaining
: The number of requests remaining in the current rate limit window.X-RateLimit-Reset
: The time at which the rate limit will be reset in seconds since epoch.429
HTTP status code response and a Rate limit error containing the rate limit details.Retry-After
header is also included in the response, indicating the number of seconds you should wait before making another request.
We currently apply a rate limit of 200 requests per minute to any API endpoint. We reserve the right to change this limit at any time.X-RateLimit-Limit
and X-RateLimit-Remaining
headers to track your rate limit status and handle rate limit errors gracefully.
Retry-After
response header or the details.retryAfter
property in the error response body.
The retry mechanism should follow an exponential backoff schedule to reduce request volume when necessary. We’d also recommend building some randomness into the backoff schedule to avoid a thundering herd effect.