Avalanche RPC Endpoint
Free Avalanche C-Chain RPC endpoint. No API key required. Fast JSON-RPC access to AVAX mainnet with multi-region nodes and sub-second finality.
Connect to Avalanche C-Chain mainnet over HTTPS. Avalanche is an EVM-compatible blockchain with fast finality and low fees.
Endpoint URL
https://rpc.nodeflare.app/avax/v1/{YOUR_KEY}Public endpoint (no API key)
https://rpc.nodeflare.app/avax/publicNo API key required. Rate-limited to 2 req/s per IP. Heavy methods (eth_getLogs, trace_*, debug_*) are restricted — sign up for a free key to unlock them.
Quick Test
Terminal
curl https://rpc.nodeflare.app/avax/v1/YOUR_KEY \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Supported Methods
| Category | Methods |
|---|---|
| Chain | eth_chainId → 43114, net_version, web3_clientVersion |
| Blocks | eth_blockNumber, eth_getBlockByHash, eth_getBlockByNumber |
| Transactions | eth_sendRawTransaction, eth_getTransactionByHash, eth_getTransactionReceipt, eth_getTransactionCount |
| State | eth_getBalance, eth_getCode, eth_getStorageAt, eth_call |
| Gas | eth_gasPrice, eth_estimateGas, eth_maxPriorityFeePerGas |
| Logs | eth_getLogs, eth_newFilter, eth_getFilterLogs |
WebSocket
Connect over WebSocket for subscriptions (eth_subscribe) and persistent connections. The gateway handles the C-Chain path for you — no /ext/bc/C/ws suffix needed.
Authenticated
wss://rpc.nodeflare.app/avax/ws/v1/{YOUR_KEY}Public (no API key, rate-limited)
wss://rpc.nodeflare.app/avax/ws/publicJavaScript
const ws = new WebSocket("wss://rpc.nodeflare.app/avax/ws/v1/YOUR_KEY");
ws.onopen = () => ws.send(JSON.stringify({
jsonrpc: "2.0", id: 1, method: "eth_subscribe", params: ["newHeads"]
}));Chain Info
| Property | Value |
|---|---|
| Chain ID | 43114 |
| Native token | AVAX |
| Block time | ~2 seconds |
| Consensus | Snowman (PoS) |