Rate limiting
To maintain service stability and fair usage, the Ampere API enforces rate limits. If you exceed allowed call thresholds, you may receive a 429 Too Many Requests
response.
Your client should:
- Inspect rate-limit headers (e.g.
X-RateLimit-Remaining
,X-RateLimit-Reset
) - Back off and retry after waiting
- Use batching or pagination if supported
- Avoid tight loops or polling at high frequency
Updated 7 days ago