v1

latestOpenAPI 3.1.02026-07-2612501.4 MB

PostValidatorDutiesSyncByEpoch

Get sync committee duties. Requests the beacon node to provide a set of sync committee duties for a particular epoch.

post/{apiKey}/eth/v1/validator/duties/sync/{epoch}

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>.

epochstring required
Example:1

epoch // EPOCHS_PER_SYNC_COMMITTEE_PERIOD <= current_epoch // EPOCHS_PER_SYNC_COMMITTEE_PERIOD + 1

Request body

string[] required

Example request

[
  "1"
]

Response

Sync committee duties.

execution_optimisticboolean required

True if the response references an unverified execution payload. Optimistic information may be invalidated at a later time. If the field is not present, assume the False value.

Example response

{
  "data": [
    {
      "pubkey": "0x93247f2209abcacf57b75a51dafae777f9dd38bc7053d1af526f220a7489a6d3a2753e5f3e8b1cfe39b56f43611df74a",
      "validator_index": "1",
      "validator_sync_committee_indices": [
        "1"
      ]
    }
  ]
}