Join AWS, Dust Labs & OrangeDAO at QuickPitch. Win $80k — Apply Today.

Contents

eth-v1-beacon-states-{state_id}-validators REST API Endpoint

Parameters:

  1. state_id - string - The state identifier. It can be one of: head (canonical head in node's view), genesis, finalized, justified, slot and stateRoot (hex encoded stateRoot with 0x prefix)
  2. id - array - Either hex encoded public key (any bytes48 with 0x prefix) or validator index
  3. status - array - Validator status specification

Returns:

  1. execution_optimistic - boolean - 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
  2. Data - The object with the following fields:

    index - string - The index of validator in validator registry

    balance - string - The current validator balance in gwei

    status - String - The type of possible status values:

    pending_initialized - When the first deposit is processed, but not enough funds are available (or not yet the end of the first epoch) to get validator into the activation queue

    pending_queued - When validator is waiting to get activated, and have enough funds etc. while in the queue, validator activation epoch keeps changing until it gets to the front and make it through (finalization is a requirement here too)

    active_ongoing - When validator must be attesting, and have not initiated any exit

    active_exiting - When validator is still active, but filed a voluntary request to exit

    active_slashed - When validator is still active, but have a slashed status and is scheduled to exit

    exited_unslashed - When validator has reached reguler exit epoch, not being slashed, and doesn't have to attest any more, but cannot withdraw yet

    exited_slashed - When validator has reached reguler exit epoch, but was slashed, have to wait for a longer withdrawal period

    withdrawal_possible - After validator has exited, a while later is permitted to move funds, and is truly out of the system

    withdrawal_done - (not possible in phase0, except slashing full balance) actually having moved funds away

    Validator status specification

    validator - The object with the following fields:

    pubkey - string - The validator's BLS public key, uniquely identifying them. _48-bytes, hex encoded with 0x prefix, case insensitive

    withdrawal_crendetials - String - The root of withdrawal credentials

    effective_balance - String - The balance at stake in Gwei

    slashed - String - Was validator slashed (not longer active)

    activation_elgibility_epoch - String - When criteria for activation were met

    activation_epoch - String - Epoch when validator activated. FAR_FUTURE_EPOCH if not activated

    exit_epoch - String - Epoch when validator exited

    withdrawable_epoch - String - When validator can withdraw or transfer funds. FAR_FUTURE_EPOCH if not defined

Code Examples:

curl -X GET \
    "http://sample-endpoint-name.network.quiknode.pro/token-goes-here/eth/v1/beacon/states/head/validators?status=active" \
    -H "accept: application/json"
Ready to get started? Create a free account