Rate Limits
Do Explo’s API endpoints have a rate limit?
Yes. Currently our rate limit for https://api.explo.co/
is set to 180 requests per minute across all endpoints, on a requestor IP basis. This was updated on February 19, 2025 from 600 requests per minute to ensure healthy API hygiene and prevent adversarial actions.
There is an additional cap on the API endpoint used to ad hoc export dashboard PDFs. This endpoint should not be called programmatically, rather it is only called by the Explo application itself. It is being called out in the docs for completeness. The cap for https://api.explo.co/embed/export/dashboard/pdf
is set to 20 requests per 10 minutes per requestor IP.
Other specific endpoints may have more restrictive rate limits and can be adjusted in the future. Requests made when over quota will receive an HTTP 429
error code with a descriptive message.
If you would like a bulk API endpoint, please reach out to the Explo support team.
Example Code Snippet to Handle HTTP 429s
Below is some code examples you can use to directionally help you navigate how to check for HTTP 429
error codes and ease off the API until the rate limit resets.