Skip to main content

getBeaconBlocksAttestations

Overview

The 'getBeaconBlocksAttestations' method retrieves attestations for a specified beacon block in the Ethereum blockchain.

Request

{
"block_id": "YOUR_BLOCK_ID"
}

Request Parameters

  • 'block_id': The unique identifier for the beacon block for which you want to retrieve attestations.

Response

{
"block_id": "YOUR_BLOCK_ID",
"attestations": [
{
"aggregation_bits": "DATA",
"data": {
"slot": "DATA",
"index": "DATA",
"beacon_block_root": "DATA",
"source": "DATA",
"target": "DATA"
},
"signature": "DATA"
}
// ... more attestations
]
}