curl --request GET \
--url https://beacon-nd-422-757-666.p2pify.com/0a9d79d93fb2f4a4b1e04695da2b77a7/eth/v1/beacon/pool/attestations
[
{
"aggregation_bits": "<string>",
"data": {
"slot": 123,
"index": 123,
"beacon_block_root": "<string>",
"source": {
"epoch": 123,
"root": "<string>"
},
"target": {
"epoch": 123,
"root": "<string>"
}
},
"signature": "<string>"
}
]
curl --request GET \
--url https://beacon-nd-422-757-666.p2pify.com/0a9d79d93fb2f4a4b1e04695da2b77a7/eth/v1/beacon/pool/attestations
[
{
"aggregation_bits": "<string>",
"data": {
"slot": 123,
"index": 123,
"beacon_block_root": "<string>",
"source": {
"epoch": 123,
"root": "<string>"
},
"target": {
"epoch": 123,
"root": "<string>"
}
},
"signature": "<string>"
}
]
/eth/v1/beacon/pool/attestations
method provides access to the pool of attestations on the Ethereum Beacon Chain. Attestations are critical elements within the Ethereum PoS mechanism, where validators attest to the validity of blocks. These attestations contribute to the consensus process and are integral in confirming block data and state transitions on the Beacon Chain.
This endpoint is essential for developers and participants in the Ethereum network who need to track and analyze the attestations made by validators, offering a deep dive into the consensus process of Ethereum.
none
array
— list of attestation objects.
object
in the array represents an individual attestation, containing:
aggregation_bits
— a bitfield representing the committee validators’ participation in the attestation. This field shows which validators are attesting to the block.data
— the data being attested to, including:
slot
: The slot number for which the attestation is made.index
: The committee index or position within the attesting committee.beacon_block_root
: The root of the beacon block being attested to.source
: The source checkpoint for the attestation.target
: The target checkpoint for the attestation.signature
— the combined signature of the validators who participated in the attestation. This signature verifies the validators’ agreement on the attested data./eth/v1/beacon/pool/attestations
method is a valuable tool for understanding the participation and decision-making process of validators on the Ethereum network, offering real-time insights into the blocks and states being endorsed by the network’s validators.The slot number to filter attestations
The committee index to filter attestations
Beacon pool attestations successfully retrieved
The response is of type object[]
.
Was this page helpful?