# ⏱️ Rate Limiting

Our service uses rate limiting to avoid having performance impacts of one user leak onto other users.

This means there is a max amount of API calls you can execute per minute. We are free to change this at any time to improve our service for all our users.

This is the theoretical rate limit, but thanks to our load balancers, the actual rate limit can be much higher than the reported limit.

The exact rate limiting values are always provided as part of the Response Headers.

Our custom TypeScript package takes care of the rate limiting, see below.

# Response Headers

Header Key
Header Value
x-ratelimit-limit

The amount of API calls you are allowed to make per second. At this time, we allow 200 requests per second, per customer.

Do note, this value can change depending on the evolution of the service, so do not hardcode this amount. Instead, use the response headers.

See Rate Limiting for more information.

Rate Limiting

Header Key
Header Value
x-ratelimit-remaining

The amount of API calls you are still allowed to make during this second.

See Rate Limiting for more information.

Rate Limiting