Documentation
Monero REST API service for mainnet uses the tx.taxi chain contract. Endpoints return chain envelopes and manifest-declared capabilities rather than Bitcoin-shaped payloads. Live and entity payloads advertise contractFamily: utxo-private and privacyModel: ringct-hidden-amounts.
GET /api/v1/chains
List registered tx.taxi chains, networks, capabilities, assets, and API-doc pointers.
GET /api/v1/chains/xmr
Return the Monero manifest.
GET /api/v1/chains/xmr/mainnet/status
Return configured source health for Monero mainnet.
GET /api/v1/chains/xmr/mainnet/snapshot
Return the chain live snapshot envelope used by the realtime relay.
GET /api/v1/chains/xmr/mainnet/archive/status
Return archive ingestion, backfill cursor, completion, and maintenance runtime status.
GET /api/v1/chains/xmr/mainnet/transactions/:txid
Return a chain entity envelope for a public transaction.
GET /api/v1/chains/xmr/mainnet/transactions/recent?limit=50
Return recent public mempool transaction summaries through the chain contract.
GET /api/v1/chains/xmr/mainnet/transactions/history?limit=50&page=1
Return archive-backed public transaction summaries when the active chain adapter has archive storage configured.
GET /api/v1/chains/xmr/mainnet/blocks/recent?limit=25&page=1
Return paged public block summaries through the chain contract.
GET /api/v1/chains/xmr/mainnet/blocks/history?limit=25&page=1
Return archive-backed public block summaries when the active chain adapter has archive storage configured.
GET /api/v1/chains/xmr/mainnet/blocks/recent/fee-stats?limit=25&page=1
Return chain-native public block fee stats through the chain contract.
GET /api/v1/chains/xmr/mainnet/blocks/history/fee-stats?limit=25&page=1
Return archive-backed chain-native public block fee stats when stored by the active chain adapter.
GET /api/v1/chains/xmr/mainnet/blocks/:id
Return a chain entity envelope for a public block by hash or height.
GET /api/v1/chains/xmr/mainnet/fees/recommended
Return chain-native fee estimates through the chain contract.
GET /api/v1/chains/xmr/mainnet/mining/pools/history?limit=25
Return best-effort mining pool history through the chain contract.
POST /api/v1/chains/xmr/mainnet/tx-proof/check
Verify public tx-proof material. Private view/spend keys are not accepted.
Private view keys never leave the browser. Reveal and scan flows use browser-local WASM and are not exposed as REST endpoints.