🚦 Rate Limiting
To ensure reliable service for all users, the API is subject to rate limits.
⏱️ Limit
Maximum: 5 requests per second per API Key.
🔄 What Happens If You Exceed the Limit?
If you exceed the rate limit:
You will receive a
429 Too Many RequestsHTTP response.Retry after the number of seconds specified in the
Retry-Afterheader.
📌 Tips
Implement exponential backoff or request queuing in your integration.
Avoid bursty traffic patterns.
Use caching where possible to reduce unnecessary calls.
Last updated