v1

latestOpenAPI 3.1.02026-07-24223580832.9 KB
Ethereum Staking Reporting

Get Validator Status for an Address

Returns a status object for a Validator address.

get/v2/ethereum/{network}/validator/status/{address}

Path parameters

network'mainnet' | 'holesky' | 'hoodi' required

Network

The network to look up against.

addressstring required

The address to look up rewards for.

Response

OK

addressstring

The validator address associated with the status.

status'UNKNOWN' | 'PENDING' | 'ACTIVE' | 'EXITED' | 'WITHDRAWAL' | 'DEPOSITED'

The current status of a validator, which maps from on-chain statuses. See reference here.

timestampnumber

The epoch second timestamp that the status was recorded at.

Example response

{
  "address": "0x821dcb238db02d80a16f20c585027dd8e2390de32062f8e14f41d5236c4e520acf6e920e05435bc144c6d84b8b6debef",
  "status": "ACTIVE",
  "timestamp": 1730818391,
  "metadata": {
    "rawStatus": "active_ongoing",
    "balance": "32011887937",
    "index": "1111111",
    "withdrawalCredentials": "0x01000000000000000000000080e163f67ab78222b1ac109e8db63801cb34b682",
    "effectiveBalance": "32000000000",
    "slashed": "false",
    "activationEligibilityEpoch": "253795",
    "activationEpoch": "253861",
    "exitEpoch": "18446744073709551615",
    "withdrawableEpoch": "18446744073709551615"
  }
}