Get beacon blocks by block_id
Beacon Chain state
Block by block_id
Reference for the Block by block_id JSON-RPC method on the Chainstack blockchain via Chainstack nodes. Parameters, response, and examples included.
GET
Get beacon blocks by block_id
TheDocumentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
/eth/v2/beacon/blocks/{block_id} method is a key API endpoint in the Ethereum Beacon Chain, designed to provide detailed information about a specific beacon block. This method is essential for developers and participants in the Ethereum network who need to access comprehensive data about a particular block, whether for analysis, verification, or development purposes.
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
{block_id}: This parameter specifies the identifier of the beacon block for which information is being requested. The block identifier can be a slot number, a block root, or a special value like ‘genesis’ or ‘head’.
Response
object— beacon block information.root— the root of the beacon block, a unique cryptographic hash that serves as an identifier for the block.slot— the slot number at which the block was proposed. In the Ethereum Beacon Chain, slots are discrete time intervals at which new blocks can be proposed.proposer_index— the index of the validator who proposed the block. This index identifies the specific validator within the Beacon Chain.parent_root— the root of the parent block to which this block is connected, ensuring the continuity of the blockchain.state_root— the root of the beacon chain state after the block’s effect. This state root is crucial for verifying the integrity of the chain’s state post-block.body— the body of the block, containing transactions, attestations, and other relevant data. This includes detailed information about the block’s operations and effects on the Beacon Chain.
/eth/v2/beacon/blocks/{block_id} method is instrumental in providing a thorough understanding of individual blocks within the Ethereum network. It enables users to delve into the specifics of block structure, content, and the role each block plays in the broader context of the blockchain.Last modified on May 18, 2026