MegTrustDevelopers

Rate limits

120 requests per minute, per key.

LimitValueWhen exceeded
Requests120 per minute, per key429 rate_limited
Request body64 KiB413 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=100 when 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 /wallets and GET /counterparties for display; re-read them before acting on money.

On this page