Skip to main content
GET
/
v1
/
eth
/
validators
/
{validator_index_or_pubkey}
Get validator
curl --request GET \
  --url https://api.rated.network/v1/eth/validators/{validator_index_or_pubkey} \
  --header 'Authorization: Bearer <token>'
{
  "validatorIndex": 1,
  "validatorPubkey": "<string>",
  "activationEpoch": 1,
  "activationEligibilityEpoch": 1,
  "exitEpoch": 1,
  "withdrawableEpoch": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Rated-Network
enum<string>
default:mainnet
Available options:
mainnet,
hoodi,
holesky

Path Parameters

validator_index_or_pubkey
required
Required range: x >= 0

Response

Successful Response

validatorIndex
integer
required
Required range: x >= 0
validatorPubkey
string
required
activationEpoch
integer | null
required
Required range: x >= 0
activationEligibilityEpoch
integer | null
required
Required range: x >= 0
exitEpoch
integer | null
required
Required range: x >= 0
withdrawableEpoch
integer | null
required
Required range: x >= 0