Skip to main content
GET
/
v1
/
solana
/
validators
/
{validator_id}
/
delegators
Get the stake accounts associated to a validator.
curl --request GET \
  --url https://api.rated.network/v1/solana/validators/{validator_id}/delegators \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "stakeAccount": "<string>",
      "slot": 1,
      "blockTime": 1,
      "voteAccount": "<string>",
      "stakeAuthority": "<string>",
      "withdrawAuthority": "<string>"
    }
  ]
}

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

fromDate
string<date>
required

Start date

toDate
string<date>
required

End date

Response

Successful Response

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