AEVIONTrust · IP · Globus
DemoAuthQRightQSignBureauPlanetAwardsBankChessPricingAPI
← Fintech Docs

Rate Limits

All AEVION fintech APIs are rate-limited per API key. Limits reset on a rolling 60-second window.

Limits by tier

TierPriceReq/minReq/monthBurstConcurrency
DeveloperFree10010K1505
Build$49/mo500100K75020
Scale$199/mo2,0001M3,000100
EnterpriseCustomDedicatedNegotiatedNegotiated

Per-module limits (Scale tier basis)

The global rate limit applies first. These are secondary per-module limits that apply on top of tier limits.

QPayNet
Write: 30/minRead: 200/min
Transfer & deposit endpoints share the write bucket
VeilNetX
Write: 10/minRead: 120/min
Ledger writes are batch-coalesced internally
QMaskCard
Write: 20/minRead: 100/min
Mask issuance is rate-limited independently from charge
QGood
Write: 10/minRead: 150/min
Donation writes share bucket with campaign mutations
Z-Tide
Write: 60/minRead: 300/min
Event submissions are high-throughput; reads are public
QChainGov
Write: 5/minRead: 100/min
Proposal creation is strictly rate-limited per user

Rate limit headers

X-RateLimit-LimitRequests per minute allowed for your tier
X-RateLimit-RemainingRequests left in the current window
X-RateLimit-ResetUnix timestamp when the window resets
Retry-AfterSeconds to wait before retrying (only on 429)

Recommended backoff strategy

On receiving HTTP 429:

  1. Read Retry-After header (seconds).
  2. Wait Retry-After + jitter(0–2s).
  3. Retry up to 3 times with exponential backoff: 1s, 2s, 4s.
  4. After 3 failures: queue for deferred retry (not synchronous user flow).

The SDK handles this automatically — set { retries: 3 } in the client constructor.

Upgrade tier →Error codes →SDK reference →