GET
/
v1
/
babylon
/
validators
/
{validator_address}
/
state
curl --request GET \
  --url https://api.rated.network/v1/babylon/validators/{validator_address}/state \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/babylon/validators/{validator_address}/state?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/babylon/validators/{validator_address}/state?limit=10&offset=10",
  "results": [
    [
      {
        "activeStake": 45236.52239464253,
        "day": "2025-01-21",
        "fromBlockNumber": 100001,
        "toBlockNumber": 107701,
        "totalDelegators": 1357,
        "validator": "bbnvaloper109x4ruspxarwt62puwcenhclw36l9v7j92f0ex"
      }
    ]
  ]
}

Using this endpoint, you can query the historical daily stake balance of a validator by their unique validator_address. The data is aggregated by validator across all of their respective delegators.

You can use the fromDate and toDate parameters to query a range of days.

Authorizations

Authorization
string
header
required

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

Path Parameters

validator_address
string
required

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

fromDate
string | null

Start date

Examples:

"2023-01-01"

toDate
string | null

End date

Examples:

"2023-12-31"

Response

200
application/json

Successful Response

The response is of type object.