Skip to main content
GET
/
v1
/
solana
/
delegators
/
stakeAccounts
Get summary metrics for multiple stake accounts
curl --request GET \
  --url https://api.rated.network/v1/solana/delegators/stakeAccounts \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "stakeAccount": "<string>",
      "stakeAuthority": "<string>",
      "withdrawAuthority": "<string>",
      "timeWindow": "1d",
      "delegatedStake": 123,
      "networkPenetration": 123,
      "status": "<string>",
      "validatorVoteAccount": "<string>",
      "validatorName": "<string>",
      "validatorEffectiveness": 123,
      "voteCommissionRate": 123,
      "mevCommissionRate": 123,
      "sumStakingRewards": 123,
      "sumMevRewards": 123,
      "sumRewards": 123,
      "sumStakingCommissionPaid": 123,
      "sumMevCommissionPaid": 123,
      "sumCommissionPaid": 123,
      "stakingRewardsApy": 123,
      "mevRewardsApr": 123,
      "delegatorApy": 123,
      "sumMissedStakingRewards": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

window
enum<string>
required
Available options:
1d,
7d,
30d,
all
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

Response

Successful Response

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