Rate limits
Requests are throttled at the edge, keyed by API key.
The gateway rate-limits requests at the edge. Limits are keyed by API key when one is present, and fall back to the client IP otherwise, so one integration’s traffic never eats into another’s budget.
Response headers
Every response carries your current budget:
When you’re over the limit
Exceeding the limit returns 429 Too Many Requests as problem+json with code rate_limited
(see the problem type):
Staying within limits
- Back off on
429. Wait for theRetry-Afterinterval, then retry. The official SDKs do this automatically with exponential backoff. - Page efficiently. Use the largest sensible
limit(up to 100) to fetch more per request rather than making many small calls. - Cache what doesn’t change (e.g. folders, addresses) instead of re-fetching on every operation.
Need a higher limit for a high-volume integration? Contact USGM support with your request_id and
expected throughput.