Get node syncing status
Requests the beacon node to describe if it's currently syncing or not, and if it is, what block it is up to.
Parameters
No Parameters
Result
Returns the node's syncing information
Example
Request
curl <your-endpoint>/eth/v1/node/syncing
Return
On success
{
"data": {
"head_slot": "4804436",
"sync_distance": "0",
"is_syncing": false,
"is_optimistic": false
}
}