429 response they are not queued or delayed.
How limits work
Rate limits are measured in two ways simultaneously:- Requests per second (RPS): a burst limit on how many requests you can send in any single second
- Requests per month: a rolling total across your billing period
Per-plan limits
Limits apply per API key, not per account. If you have multiple keys on the same plan they each get the full limit.
Rate limit headers
Every response includes headers showing your current limit status:
Read these headers on every response and slow down before
X-RateLimit-Remaining reaches zero.
429 response
When you exceed the limit:X-RateLimit-Reset before sending the next request.
Handling 429s in a script
Strategies for staying within limits
Batch with multicall Instead of callingcall-contract once per token in a list, use multicall-contract to fetch all results in a single request:
Poll at a reasonable interval
If you are watching for new transactions or blocks, polling faster than one block time gives you no new data but burns requests. Alephium produces one block every 16 seconds per chain on average.
Next steps
Error handling
Full error code reference and retry logic
Authentication
API keys, slugs, and header format

