Rate limits
120 requests per minute, per key.
| Limit | Value | When exceeded |
|---|---|---|
| Requests | 120 per minute, per key | 429 rate_limited |
| Request body | 64 KiB | 413 request_too_large |
Above 120 requests per minute a key receives 429 rate_limited. Wait the number of seconds in the
Retry-After header, then sign a new attempt — a resent signature is refused as a replay.
Give each of your services its own key so one busy job can't throttle another — and so you can revoke one without breaking the rest.
Staying under the limit
- Page with
limit=100when you reconcile: fewer, larger pages. - Prefer webhooks to tight polling loops, and poll a payout's status with backoff rather than in a fixed tight interval.
- Cache
GET /walletsandGET /counterpartiesfor display; re-read them before acting on money.