curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/slot/sync-committee-duties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"slot": {
"number": 2375680
},
"chain": "mainnet"
}
'{
"data": [
{
"validator": {
"index": 1,
"public_key": "<string>"
},
"status": "success",
"finality": "not_finalized",
"reward": {
"total": "<string>",
"reward": "<string>",
"penalty": "<string>",
"missed_reward": "<string>"
}
}
],
"paging": {
"next_cursor": "<string>"
}
}Provides status and reward information about sync committee duties for a specific slot for each validator. The validator filter is optional; if omitted, results include all validators assigned sync duties for the slot. This endpoint currently only supports finalized data.
Use the reward endpoints for epoch based attestation rewards information.
You can combine this endpoint with:
curl --request POST \
--url https://beaconcha.in/api/v2/ethereum/slot/sync-committee-duties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"slot": {
"number": 2375680
},
"chain": "mainnet"
}
'{
"data": [
{
"validator": {
"index": 1,
"public_key": "<string>"
},
"status": "success",
"finality": "not_finalized",
"reward": {
"total": "<string>",
"reward": "<string>",
"penalty": "<string>",
"missed_reward": "<string>"
}
}
],
"paging": {
"next_cursor": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.beaconcha.in/llms.txt
Use this file to discover all available pages before exploring further.
validator is optional in this request body
Specify a slot using one of the slot number. Selecting by a consensus view may soon be available in a future update.
Show child attributes
The Ethereum chain to query.
mainnet, hoodi Cursor value for pagination. See our pagination guide for more details.
The number of items to return per page.
1 <= x <= 10validator is optional in this request body
Show child attributes
Was this page helpful?