To ensure we’re able to provide reasonable service to all of our customers, requests are throttled at 10 requests per second. If you exceed this limit, you’ll receive a response with HTTP status 429 Too Many Requests. Here is an example of a failed response:

{
    "detail": "Request was throttled. Expected available in 60 seconds.",
    "status_code": 429,
    "datetime": "2023-08-08 23:40:24.172943+00:00"
}

It’s important to handle a 429 response - we recommend implementing retries with an exponential backoff strategy.

If your use case requires a higher limit, please contact us and we’ll be happy to discuss your needs.