GET
/
v1
/
solana
/
validators
/
{validator_id}
/
state
curl --request GET \
  --url https://api.rated.network/v1/solana/validators/{validator_id}/state \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/solana/validators/{validator_id}/state?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/solana/validators/{validator_id}/state?limit=10&offset=10",
  "results": [
    [
      {
        "activeStake": 31578,
        "balance": 32000.1,
        "from_": "2024-12-14",
        "voteAccount": "voteAccount"
      }
    ]
  ]
}

You can query this endpoint by using the vote_accountaddress of a validator as the validator_id. The granularity of the results are at a daily level.

Authorizations

Authorization
string
header
required

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

Path Parameters

validator_id
string
required

Query Parameters

limit
integer
default:15

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

toDate
string | null

End date

Examples:

"2023-12-31"

fromDate
string | null

Start date

Examples:

"2023-01-01"

from
string | null

UTC day for filtering state data

Response

200
application/json

Successful Response

The response is of type object.