The limit
Each key may make up to 120 requests per minute. The window is rolling per key, so spreading work across multiple keys raises your total throughput proportionally. When you exceed the limit, the API returns429 Too Many Requests with a Retry-After header (seconds until the window resets):
Staying under the limit
- Respect
Retry-After. On a429, wait the number of seconds it specifies before retrying. - Back off exponentially on repeated
429or5xxresponses. - Page efficiently. Use
pageSize=100and filters so you fetch fewer pages — see Pagination. - Cache responses that don’t change often rather than re-fetching them in a loop.
Need a higher limit for a high-volume integration? Contact support@leadey.ai.