Rate limiting
Our API has rate limits to prevent abuse and ensure fair usage.
We enforce rate limits to balance the load on our servers and provide a fair environment for all developers to interact with the PicoBot API. Therefore, the number of requests you send to the API will be measured and throttled if you surpass the allowed rate limit.
Rate limit
Section titled “Rate limit”The default rate limit is 20 API calls per minute for each IP address. We may adjust these limits in the future.
When you exceed the rate limit, you will receive a 429 Too Many Requests status code with the following response:
{ "error": { "code": "RATE_LIMIT_EXCEEDED", "message": "Too many requests from this IP. Please try again in 1 minute(s)." }}When does the rate limit reset?
Section titled “When does the rate limit reset?”The rate limit lasts 1 minute, and the number of requests you’ve sent within that window will reset at the next minute.