production vs sandbox.
How Rate Limits Work
- Each request you make to the API consumes from a rate limit quota.
- If you exceed your allocated limit, the API will return a
429 Too Many Requestserror. - Rate limits are scoped to your environment (production or sandbox).
- Requests in sandbox do not affect your production quota, and vice versa.
Rate Limit Headers
Every response from the API includes rate limit headers so you can programmatically track your remaining quota:
When the rate limit is exceeded, the API returns
429 Too Many Requests:
Environment-Based Limits
We apply different rate limits depending on your environment:- Use sandbox keys to build and test without worrying about exhausting your production quota.
- Switch to production keys when you go live with your integration.