- Concurrent requests - how many in-flight requests we’ll accept at once.
- Monthly request quota - total calls per billing period.
When you hit the limit
If you exceed your concurrency cap, additional requests queue briefly on our side rather than failing immediately. If queuing would exceed a reasonable wait, you’ll get a429 Too Many Requests response.
The recommended client behavior:
- Run a fixed worker pool sized to your concurrency limit.
- On
429, back off for the duration in theRetry-Afterheader (if present), otherwise 5 seconds. - Resume.
Monthly quota
When you’ve used your monthly quota, requests return402 Payment Required with the body Quota exceeded. Upgrade your plan or wait for the next billing cycle. You can monitor remaining quota in the dashboard.
Quota is only one of three reasons for a 402 - an unpaid balance past your credit limit and a card that has failed repeatedly produce the same status code with different messages. See 402 payment required for all three and how each clears.

