MeterCall RPC
One endpoint. Every chain. Drop it into your app. Pay per call.
// Your RPC endpoint. That's it.
POST https://rpc.metercall.ai/v1
// Ethereum
fetch('https://rpc.metercall.ai/v1', {
method: 'POST',
body: JSON.stringify({
chain: 'ethereum',
method: 'eth_getBalance',
params: ['0xd8dA6BF...96045', 'latest']
})
})
// Solana
{ chain: 'solana', method: 'getBalance', params: ['7EcDhSY...FLtV'] }
// Bitcoin
{ chain: 'bitcoin', method: 'getblockcount', params: [] }
// Base, Arbitrum, Polygon, Optimism, Avalanche, BNB — same format.
Supported chains
Live. Metered. Automatic failover. Your app just calls us.
Live costs
Every chain, every call, priced in real-time. Costs move with network load.
Pricing
No monthly fee. No compute units. No overage charges. Just pay per call.
Alchemy
Infura
MeterCall
Monthly fee
$49/mo
$50/mo
$0
Price per call
Compute units
Req/day limits
$0.001
Chains
6
8
9+
Failover
Manual
No
Automatic
Lock-in
Annual contract
Monthly plan
None. Ever.
10,000 calls = $10. 1M calls = $1,000. No surprises. Meter Credits — wallet or Stripe.
Drop it into any app
Replace your Alchemy/Infura/QuickNode URL with ours. One line change. Every chain. Automatic failover. No vendor lock-in.
// ethers.js — one line
const provider = new ethers.JsonRpcProvider('https://rpc.metercall.ai/v1/ethereum');
// web3.js
const web3 = new Web3('https://rpc.metercall.ai/v1/ethereum');
// viem
const client = createPublicClient({ transport: http('https://rpc.metercall.ai/v1/ethereum') });
// curl
curl -X POST https://rpc.metercall.ai/v1 \
-d '{"chain":"ethereum","method":"eth_blockNumber","params":[]}'