curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/sync-committee \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sync_committee_period": {
"view": "latest"
},
"chain": "mainnet"
}
'{
"data": {
"period": 1,
"finality": "not_finalized"
},
"range": {
"slot": {
"start": 1,
"end": 1
},
"epoch": {
"start": 1,
"end": 1
},
"timestamp": {
"start": 1,
"end": 1
}
}
}Returns basic sync committee information for a particular sync period. Use this to determine the range of epochs a given sync period entails.
You can combine this endpoint with:
curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/sync-committee \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sync_committee_period": {
"view": "latest"
},
"chain": "mainnet"
}
'{
"data": {
"period": 1,
"finality": "not_finalized"
},
"range": {
"slot": {
"start": 1,
"end": 1
},
"epoch": {
"start": 1,
"end": 1
},
"timestamp": {
"start": 1,
"end": 1
}
}
}Was this page helpful?