How limits work
- Limits are applied per API token.
- When you exceed limits, API returns
429 Too Many Requests. - Use exponential backoff before retrying.
Retry strategy
- On
429, wait and retry with backoff (1s,2s,4s, …). - Add jitter to avoid retry spikes.
- Stop retries after a maximum attempt threshold.
Example backoff (pseudocode)
If your use case needs higher throughput, contact support with your traffic pattern and endpoint usage.