Ratelimiting
Our APIs are protected using a sliding window ratelimiter. This means that exceeding the allowed number of requests per time window will result in a 429 Too Many Requests
(rate-limited) response.
The ratelimiter returns for each request the following headers:
RateLimit-Limit
: The maximum number of requests allowed in the current time window.RateLimit-Remaining
: The number of requests remaining in the current time window.RateLimit-Reset
: The time at which the current rate limit window will reset in seconds.
For example, if you exceed the rate limit, you will receive the following response:
Example Headers
When using the official Botpress Client, the ratelimiter is automatically handled for you.
Was this page helpful?