🚦Rate Limiting

As a multi-tenant service provider we place restrictions on the amount of requests that a single client can generate in order to provide a high quality of service to all of our customers.

By default, we apply a rate limit of 1000 requests per minute.

If your client exceeds this threshold it will be unable to make further requests until the rate limit resets.

When a rate limit is activated you will receive a 429 Too Many Requests response.

We also include a Retry-After Header in our response. The Header's value is the number of seconds remaining until the rate limit resets and can be used to perform load management in your client side code.

Last updated