eth_getUncleCountByBlockNumber
Endpoints
eth_getUncleCountByBlockNumber | Base
Base API method that retrieves the number of uncles in a block, identified by its number. Base API method that retrieves the number of uncles in a block.
POST
eth_getUncleCountByBlockNumber
Base API method that retrieves the number of uncles in a block, identified by its number. Uncles are blocks that are not part of the main blockchain but are still valid and have a relationship to a block on the main chain.
This might be useful in the future when there’s a decentralized or a shared sequencer.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
blockNumber— the number of the block for which the uncle count is being queried, encoded as a hexadecimal string.
Response
result— the number of uncles in the specified block, encoded as a hexadecimal string. This includes all uncles that were referenced by the block at the time it was sealed.
Use case
Theeth_getUncleCountByBlockNumber method is important for applications that monitor the health and security of the blockchain, such as network analysis tools or block explorers. It provides insights into the level of competition among miners and the overall inclusiveness of the blockchain towards valid blocks that did not make it to the main chain.Last modified on May 18, 2026