v1
latestOpenAPI 3.1.02026-07-2612501.4 MBPostBeaconRewardsSyncCommitteeByBlockId
Get sync committee rewards. Retrieves rewards info for sync committee members specified by array of public keys or validator index. If no array is provided, return reward info for every committee member.
post/{apiKey}/eth/v1/beacon/rewards/sync_committee/{blockId}
Path parameters
apiKeystring required
<style>
.custom-style {
color: #048FF4;
}
</style>
For higher throughput, please <span class="custom-style"><a href="../docs/quick-start-guide#-creating-your-api-key-on-the-zan-platform" target="_blank">create your own API key</a></span>.
blockIdstring required
Block identifier. Can be one of: "head" (canonical head in node's view), "genesis", "finalized", <slot>, <hex encoded blockRoot with 0x prefix>.
Request body
string[] required
Response
Sync committee rewards info
Example response
{
"data": [
{
"validator_index": "0",
"reward": "2000"
}
]
}