GET
/
v1
/
solana
/
delegators
/
stakeAccounts
/
{stake_account}
/
summary
curl --request GET \
  --url https://api.rated.network/v1/solana/delegators/stakeAccounts/{stake_account}/summary
{
  "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).

Path Parameters

stake_account
string
required

Query Parameters

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

Response

200
application/json
Successful Response

The response is of type object.