Skip to main content
GET
/
v1
/
eth
/
validators
/
mappings
Get Pool and Operator mappings for all Validators.
curl --request GET \
  --url https://api.rated.network/v1/eth/validators/mappings \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "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

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

Response

Successful Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
ValidatorMappings · object[]
required