Skip to main content
GET
/
v1
/
solana
/
delegators
/
stakeAccounts
/
{stake_account}
/
summary
Get stake account summary metrics
curl --request GET \
  --url https://api.rated.network/v1/solana/delegators/stakeAccounts/{stake_account}/summary \
  --header 'Authorization: Bearer <token>'
{
  "delegatedStake": 100000.55,
  "delegatorApy": 0.05,
  "mevCommissionRate": 0.07,
  "mevRewardsApr": 0,
  "networkPenetration": 0.24,
  "stakeAccount": "123FPQtifVXkooNAhiYiKeoQaL9tD9kkY5mQvGRwnLy2",
  "stakeAuthority": "q9XWcZ7T1wP4bW9SB4XgNNwjnFEJ982nE8aVbbNuwot",
  "stakingRewardsApy": 0.05,
  "status": "active",
  "sumCommissionPaid": 0.0001,
  "sumMevCommissionPaid": 0,
  "sumMevRewards": 0,
  "sumMissedStakingRewards": 0,
  "sumRewards": 0.002,
  "sumStakingCommissionPaid": 0.0001,
  "sumStakingRewards": 0.002,
  "timeWindow": "1d",
  "validatorEffectiveness": 0.984,
  "validatorName": "Ledger by Figment",
  "validatorVoteAccount": "26pV97Ce83ZQ6Kz9XT4td8tdoUFPTng8Fb8gPyc53dJx",
  "voteCommissionRate": 0.07,
  "withdrawAuthority": "q9XWcZ7T1wP4bW9SB4XgNNwjnFEJ982nE8aVbbNuwot"
}
These endpoints return high level information about stake accounts over the time period such as their network penetration, rewards, annual percentage yield (APY), paid commissions, and the effectiveness of their validator delegate/s.
On the 1d time period, the APY takes into account the rewards received for the last 3 days to smooth out the noise given Solana’s staking rewards schedule, which is every epoch (~2 days).

Authorizations

Authorization
string
header
required

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

Path Parameters

stake_account
string
required

Query Parameters

window
enum<string>
required
Available options:
1d,
7d,
30d,
all

Response

Successful Response

stakeAccount
string
required
stakeAuthority
string | null
required
withdrawAuthority
string | null
required
timeWindow
enum<string>
required
Available options:
1d,
7d,
30d,
all
delegatedStake
string | null
required
networkPenetration
string | null
required
status
string | null
required
validatorVoteAccount
string | null
required
validatorName
string | null
required
validatorEffectiveness
string | null
required
voteCommissionRate
string | null
required
mevCommissionRate
string | null
required
sumStakingRewards
string | null
required
sumMevRewards
string | null
required
sumRewards
string | null
required
sumStakingCommissionPaid
string | null
required
sumMevCommissionPaid
string | null
required
sumCommissionPaid
string | null
required
stakingRewardsApy
string | null
required
mevRewardsApr
string | null
required
delegatorApy
string | null
required
sumMissedStakingRewards
string | null
required