Skip to main content
POST
/
api
/
v2
/
ethereum
/
sync-committee
/
validators
Validators
curl --request POST \
  --url https://beaconcha.in/api/v2/ethereum/sync-committee/validators \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "mainnet",
  "sync_committee_period": "latest",
  "cursor": "",
  "page_size": 10,
  "validator": {
    "validator_identifiers": [
      1
    ]
  }
}
'
{
  "data": [
    {
      "validator": {
        "index": 1,
        "public_key": "<string>"
      },
      "duties": {
        "successful": 1,
        "assigned": 1,
        "missed": 1,
        "scheduled": 1
      }
    }
  ],
  "range": {
    "slot": {
      "start": 1,
      "end": 1
    },
    "epoch": {
      "start": 1,
      "end": 1
    },
    "timestamp": {
      "start": 1,
      "end": 1
    }
  },
  "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.

Authorizations

Authorization
string
header
required

Authorization header with value: Bearer YOUR_TOKEN. Refer to the API Keys section to create your API key.

Body

application/json

validator is optional in this request body

chain
enum<string>
default:mainnet
required

The Ethereum chain to query.

Available options:
mainnet,
hoodi
sync_committee_period
Number · object
required

Specify a sync committee period using one of the following methods.

  • Sync committee period number
  • View: "latest", "next"
cursor
string
default:""

Cursor value for pagination. See our pagination guide for more details.

page_size
integer
default:10

The number of items to return per page.

Required range: 1 <= x <= 10
validator
Indices/Pubkeys · object

validator is optional in this request body

Response

Successful response.

Response containing the validators in the sync committee.

data
object[]
required
range
object
required

The range of data covered by the results, specified in slots, epochs, and Unix timestamps.

paging
object