/eth/v1/beacon/states/{state_id}/validators/{validator_id}

Get validator from state by id

Parameters:

  1. state_id - string - (Required) State identifier. Can be one of: "head" (canonical head in node's view), "genesis", "finalized", "justified", {slot}, {hex encoded stateRoot with 0x prefix}.

  2. validator_id - string - (Required) Either hex encoded public key (any bytes48 with 0x prefix) or validator index.

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 - object - with the following values:

    1. index - string - Index of validator in validator registry.

    2. balance - string - Current validator balance in gwei.

    3. status - string - Possible statuses:

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.

curl -X GET \
    "curl https://mainnet.ethereum.validationcloud.io/v1/<YOUR_API_KEY_HERE>/eth/v1/beacon/states/head/validators/0xa263cec6f692c3f2a4edcbf7b791634ae964ae959e2dfab032cbe9234004ca34b02015ede753db15bd98bd12e3cd039b \
    -H "Content-Type: application/json" 

Last updated