Skip to content

Node Syncing

Returns the syncing status of the beacon node, including sync distance and head slot.

GET /eth/v1/node/syncing
Terminal window
curl https://eth-beacon.blockreq.com/v1/rpc/public/eth/v1/node/syncing
{
"data": {
"head_slot": "1234567",
"sync_distance": "0",
"is_syncing": false,
"is_optimistic": false,
"el_offline": false
}
}