Rate limiting
To ensure consistent performance and fair access to our API, we enforce reasonable rate limits on our API end-points.
Whilst we don’t currently publish our rate limits, we have applied reasonable limits based on intended use in real-world applications.
If your application exceeds rate limits, you will encounter a HTTP
429 (Too Many Requests) status code. The response will
contain a Retry-After
header indicating the number of seconds you need to wait
before retrying the request. The response body will also contain an error with
code rate_limited.
Example:
You should implement your own retry logic that gracefully handles 429 errors
and respects the Retry-After
header.