BNB Chain RPC Endpoint

Free BNB Smart Chain (BSC) RPC endpoint. Public access with no API key. Full JSON-RPC 2.0 support for BNB mainnet with automatic failover.

Connect to BNB Smart Chain mainnet over HTTPS. Full EVM compatibility with all standard Ethereum methods.

Endpoint URL

https://rpc.nodeflare.app/bnb/v1/{YOUR_KEY}

Public endpoint (no API key)

https://rpc.nodeflare.app/bnb/public

No 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/bnb/v1/YOUR_KEY \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'

Supported Methods

CategoryMethods
Chaineth_chainId56, net_version, web3_clientVersion
Blockseth_blockNumber, eth_getBlockByHash, eth_getBlockByNumber
Transactionseth_sendRawTransaction, eth_getTransactionByHash, eth_getTransactionReceipt, eth_getTransactionCount
Stateeth_getBalance, eth_getCode, eth_getStorageAt, eth_call
Gaseth_gasPrice, eth_estimateGas
Logseth_getLogs, eth_newFilter, eth_getFilterLogs
BSCeth_getTransactionDataAndReceipt

WebSocket

Connect over WebSocket for subscriptions (eth_subscribe) and persistent connections. Requests are geo-routed to the nearest region (Asia, Europe, UK) automatically.

Authenticated

wss://rpc.nodeflare.app/bnb/ws/v1/{YOUR_KEY}

Public (no API key, rate-limited)

wss://rpc.nodeflare.app/bnb/ws/public
JavaScript
const ws = new WebSocket("wss://rpc.nodeflare.app/bnb/ws/v1/YOUR_KEY");
ws.onopen = () => ws.send(JSON.stringify({
  jsonrpc: "2.0", id: 1, method: "eth_subscribe", params: ["newHeads"]
}));

Chain Info

PropertyValue
Chain ID56
Native tokenBNB
Block time~3 seconds
ConsensusProof of Staked Authority