Finality Checkpoints
Description
Section titled “Description”Returns the finality checkpoints (previous justified, current justified, finalized) for the given state.
Endpoint
Section titled “Endpoint”GET /eth/v1/beacon/states/{state_id}/finality_checkpointsPath Parameters
Section titled “Path Parameters”| Parameter | Type | Description |
|---|---|---|
state_id | string | State identifier: head, genesis, finalized, justified, slot number, or state root |
Request
Section titled “Request”curl https://eth-beacon.blockreq.com/v1/rpc/public/eth/v1/beacon/states/head/finality_checkpointsResponse
Section titled “Response”{ "data": { "previous_justified": { "epoch": "12345", "root": "0x..." }, "current_justified": { "epoch": "12346", "root": "0x..." }, "finalized": { "epoch": "12344", "root": "0x..." } }}