Skip to content

Rate limits

Source and verification
Owning repository
bitcoinuniverseio/stampdex (private application source)
Source path
throttler configuration and per-route throttle decorators
Applicable release
continuous deployment, verify with GET /api/version
Chain and network
bitcoin / mainnet
Lifecycle
stable
Last verified
2026-09-01
This page
Edit on GitHub · Bitcoin Universe platform

300 requests per minute. Crossing it returns HTTP 429.

Some routes cost more to serve or touch the network, and carry their own limit. All are per minute.

LimitKind of route
120Batch stamp detail lookups
30Batch token price lookups
20Every challenge request, deep health, ecosystem health, and batch dispenser lookups
10Fee bump by child pays for parent, and atomic offer preparation
6Alert scans
5Broadcasting a transaction, and rebroadcasting one

The pattern is consistent: reads are generous, batch reads are moderate, anything that signs, broadcasts, or issues a challenge is deliberately slow.

Media routes do not count against any limit:

  • raw stamp bytes
  • stamp previews and thumbnails
  • token logos

They are cacheable and content addressed. See Media endpoints.

Cache on your side. Server-side caches already hold most responses for 20 seconds to a few minutes, so polling faster than that returns the same bytes and spends your budget for nothing. See Freshness.

Batch where a batch route exists. Stamp details take up to 24 ids in one call, and token prices take a list of tickers. Two batch calls beat forty single ones.

Use conditional requests on media. Previews honour If-None-Match and answer 304.

Ask for what you need. The token list accepts limit up to 500. Pulling everything and filtering client side is the expensive way round.

Wait a minute and slow down. The limit is per minute, not a rolling penalty, so a pause clears it. Retrying immediately in a loop just keeps you at the limit.