eth_getBlockByNumber on Ethereum
Fetches a full block by number (or a tag like "latest", "safe", "finalized"). Pass true as the second argument to include full transaction objects, false for hashes only.
The fullTransactions flag is the cost lever — true returns every tx object (large payloads on busy chains), false returns only hashes. Prefer the finalized tag over latest for anything that must survive a reorg.
Ethereum endpoint (public — no key)
https://rpc.nodeflare.app/eth/publicMethod
eth_getBlockByNumber
Cost
2 CU
Chain ID
1
Block time
~12 s
Finality
~13 min (finalized)
Blocks on Ethereum
Ethereum produces a block every ~12 seconds, and the safe/finalized tags are meaningful here: finalized lags the head by two epochs (~13 minutes). Use finalized for exchange-grade confirmation logic and latest for UI reads.
Parameters
[blockNumber|tag, fullTransactions:boolean]cURL
curl https://rpc.nodeflare.app/eth/public \
-X POST \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["latest", false],"id":1}'ethers.js
import { ethers } from 'ethers';
const provider = new ethers.JsonRpcProvider(
'https://rpc.nodeflare.app/eth/public'
);
const result = await provider.send('eth_getBlockByNumber', ["latest", false]);Try it live
Runs the example above against the public Ethereum endpoint — straight from your browser.
eth_getBlockByNumber on Ethereum — FAQ
How do I call eth_getBlockByNumber on Ethereum?
POST a JSON-RPC 2.0 request with "method": "eth_getBlockByNumber" to NodeFlare's Ethereum endpoint at https://rpc.nodeflare.app/eth/public. No API key is required for the public endpoint.
What does eth_getBlockByNumber cost on the free tier?
eth_getBlockByNumber is weighted at 2 compute units per call. The free tier includes 2,000,000 CU/month, so that is roughly 1,000,000 eth_getBlockByNumber calls per month — no credit card.
Is eth_getBlockByNumber available on the public Ethereum endpoint?
Yes. eth_getBlockByNumber works on the public Ethereum endpoint (https://rpc.nodeflare.app/eth/public) with no API key, rate-limited per IP. A free key adds higher limits and a dedicated path.
Anything Ethereum-specific to know when using eth_getBlockByNumber?
Ethereum produces a block every ~12 seconds, and the safe/finalized tags are meaningful here: finalized lags the head by two epochs (~13 minutes). Use finalized for exchange-grade confirmation logic and latest for UI reads.
Call eth_getBlockByNumber on Ethereum with a free key
2,000,000 compute units/month, heavy methods unlocked, every chain included. No credit card.
Get your free API key →eth_getBlockByNumber on other chains