API rate limiting
Daily limit
There is a limit of 10.000 requests per day per tenant.
Using the following headers, you can track the state of the limit:
- X-RateLimit-Daily-Remaining: the remaining number of requests for that day
- X-RateLimit-Daily-Limit: the max total number of requests per day (10.000)
- X-RateLimit-Daily-Reset: The number of seconds until the limit resets.
If you reach the daily limit, your request will fail with a 429 Too Many Requests error.
Requests / second
Next to the daily limit, requests are subject to a limit per second.
The current limit is 15 requests / sec.
You can use the following headers to track the state of this limit:
- X-RateLimit-Remaining: the remaining number of requests for that period
How to handle rate limits
As a consumer of our API, you should make your client software aware of these rate limits. You can do this by looking at the appropriate response headers and pausing api calls until the limit resets.
Bijgewerkt op: 02/10/2025
Dankuwel!