One endpoint for BTC, LTC, DOGE, DASH and ZEC. No nodes to run or maintain, no infrastructure to manage — just call the API. Optional Tor egress on any request.
curl -s https://api.example/rpc/btc \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"1.0","method":"getblockcount"}'You talk only to the gateway. Backend node addresses and RPC credentials are never exposed — the gateway proxies your call and returns the node response verbatim.
Ask for ?archive=true or ?indexed=true and we route to a node that satisfies it, or tell you plainly that none is available. No silent downgrades.
Set X-Tor-Egress: true and the outbound call to the backend node rides through Tor. Fail-closed: it never falls back to a direct dial.
Every response carries X-RateLimit-* and X-Quota-* headers, so your client always knows exactly where it stands.
Default-deny. Only safe, read-only RPC methods pass through. Wallet, admin and node-control methods are rejected by construction.
No payment required to start. Register, grab a key, and query. Paid plans arrive later with Monero — no accounts tied to your identity.