Limits by tier
All endpoints under the Developer API share the same counter. A
GET /charities call and a POST /configs call both count toward the same per-minute limit for your project.
Response headers
Every successful response from a rate-limited tier includes headers describing your current usage:
These headers are included on both successful responses and
429 responses.
When you’re rate limited
If you exceed your tier’s limit, the API returns a429 status with an additional Retry-After header:
The request handler is not invoked when it is rate limited. No side effects occur and no data is modified.
Best practices
- Cache responses when possible to reduce unnecessary calls, especially for data that changes infrequently like the charity list or chain list.
- Respect
Retry-After. When you receive a429, wait at least the number of seconds indicated before retrying. - Monitor your headers. Use
X-RateLimit-Remainingto slow down before you hit the limit. - Spread requests over time rather than sending them in bursts at the start of each window.