Multi-chain RPC
One endpoint, every chain — JSON-RPC for AI agents.
Standard JSON-RPC 2.0 across 40+ chains through a single endpoint — just swap the chain in the path. EVM eth_* methods and non-EVM (Solana, Bitcoin, Near, Sui…) both work. No API keys, no rate-limit tiers — pay per call in USDC via x402. Powered by Tatum's gateway.
Capabilities
Supported chains
Use the network slug (or a common alias like eth, arb, avax) in the path: POST /v1/rpc/{network}.
/ethereum/base/arbitrum/arbitrum-nova/optimism/polygon/bsc/avalanche/fantom/cronos/celo/gnosis/zksync/berachain/unichain/monad/chiliz/moonbeam/aurora/flare/oasis/kaia/sonic/xdc/abstract/hyperevm/plume/ronin/rootstock/solana/bitcoin/litecoin/dogecoin/bitcoin-cash/near/sui/ripple/polkadot/kusama/zcashPricing
Flat per-call pricing. No subscriptions, no monthly minimums, no rate-limit tiers.
Quick Start
Send a JSON-RPC request to any chain. Without a payment header you get a 402 quoting the exact price; add an x402 payment header to get the result.
# Ethereum — latest block number
curl -X POST https://blockrun.ai/api/v1/rpc/ethereum \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","id":1}'
# → 402 with price ($0.0020) + Base USDC payment instructions
# Base — chain id (paid: add the x402 header)
curl -X POST https://blockrun.ai/api/v1/rpc/base \
-H "Content-Type: application/json" \
-H "x-payment: <x402_payment_token>" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","id":1}'
# Solana — current slot
curl -X POST https://blockrun.ai/api/v1/rpc/solana \
-H "Content-Type: application/json" \
-H "x-payment: <x402_payment_token>" \
-d '{"jsonrpc":"2.0","method":"getSlot","id":1}'
# Read an ERC-20 balance (eth_call) on Polygon
curl -X POST https://blockrun.ai/api/v1/rpc/polygon \
-H "Content-Type: application/json" \
-H "x-payment: <x402_payment_token>" \
-d '{"jsonrpc":"2.0","method":"eth_call","params":[{"to":"0x...","data":"0x70a08231..."},"latest"],"id":1}'Use the BlockRun Python SDK or TypeScript SDK to handle the x402 payment automatically.
Start querying any chain
Fund a wallet with USDC on Base and hit /v1/rpc/{network} immediately. No registration, no API keys.