Skip to content

Finality Checkpoints

Returns the finality checkpoints (previous justified, current justified, finalized) for the given state.

GET /eth/v1/beacon/states/{state_id}/finality_checkpoints
ParameterTypeDescription
state_idstringState identifier: head, genesis, finalized, justified, slot number, or state root
Terminal window
curl https://eth-beacon.blockreq.com/v1/rpc/public/eth/v1/beacon/states/head/finality_checkpoints
{
"data": {
"previous_justified": {
"epoch": "12345",
"root": "0x..."
},
"current_justified": {
"epoch": "12346",
"root": "0x..."
},
"finalized": {
"epoch": "12344",
"root": "0x..."
}
}
}