API rate limiting
Robaws API requests are subject to rate limiting. At the moment, we use the token bucket algorithm with a replenish rate of 15 and a burst capacity of 20. That means you can do at least 15 requests per second.
As a consumer of our API, you should make your client software aware of this rate limit. You can do this by looking at the x-ratelimit-remaining response header and pausing api calls for a second when the remaining becomes close to zero. When you receive a 429 Too Many Requests error, it's safe to pause for a second and retry the request.
As a consumer of our API, you should make your client software aware of this rate limit. You can do this by looking at the x-ratelimit-remaining response header and pausing api calls for a second when the remaining becomes close to zero. When you receive a 429 Too Many Requests error, it's safe to pause for a second and retry the request.
Bijgewerkt op: 21/11/2022
Dankuwel!