Skip to main content
GET
/
v1
/
eth
/
validators
/
{validator_index_or_pubkey}
/
mappings
Get Pool and Operator mappings for Validators.
curl --request GET \
  --url https://api.rated.network/v1/eth/validators/{validator_index_or_pubkey}/mappings \
  --header 'Authorization: Bearer <token>'
{
  "validatorIndex": 1,
  "validatorPubkey": "<string>",
  "pool": "<string>",
  "dvtNetwork": "<string>",
  "nodeOperators": [
    "<string>"
  ],
  "dvtOperators": [
    "<string>"
  ],
  "depositAddresses": [
    "<string>"
  ],
  "withdrawalAddress": "<string>",
  "subpool": "<string>"
}
This endpoint is available only to annual commitment and custom Enterprise plans. Get in touch with [email protected] to learn more.

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
pool
string | null
required
dvtNetwork
string | null
required
nodeOperators
string[] | null
required
dvtOperators
string[] | null
required
depositAddresses
string[] | null
required
withdrawalAddress
string | null
required
subpool
string | null
required