Skip to main content
GET
/
v0
/
solana
/
delegators
/
stakeAuthorities
Stake Authority Summaries
curl --request GET \
  --url https://api.rated.network/v0/solana/delegators/stakeAuthorities \
  --header 'Authorization: Bearer <token>'
{
  "page": {
    "from": 123,
    "to": 123,
    "granularity": "3k",
    "size": 1
  },
  "total": 1,
  "data": [
    {
      "stakeAuthority": "<string>",
      "timeWindow": "1d",
      "validatorDelegates": 1,
      "delegations": [
        {
          "validatorVoteAccount": "<string>",
          "validatorName": "<string>",
          "percentage": "<string>"
        }
      ],
      "stakingRewardsApy": "<string>",
      "mevRewardsApr": "<string>",
      "delegatorApy": "<string>",
      "sumMissedStakingRewards": "<string>",
      "poolName": "<string>",
      "delegatedStake": "<string>",
      "networkPenetration": "<string>",
      "aggregateValidatorEffectiveness": "<string>",
      "blendedVoteCommissionRate": "<string>",
      "blendedMevCommissionRate": "<string>",
      "sumStakingRewards": "<string>",
      "sumMevRewards": "<string>",
      "sumRewards": "<string>",
      "sumStakingCommissionPaid": "<string>",
      "sumMevCommissionPaid": "<string>",
      "sumCommissionPaid": "<string>"
    }
  ],
  "next": "<string>"
}
Similar to the Single delegator summary but returns the summary stats for all stake accounts or stake authorities. Here’s how to interpret the inputs required to operate it:
ParameterContext
windowWindow of the aggregation, with 1d, 7d, 30d and all being the supported values
fromFrom a specific delegator’s ranking based on their order in terms of network_penetration
sizeThe number of results included per page
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.

Query Parameters

window
enum<string>
required
Available options:
1d,
7d,
30d,
all
type
string | null
from
integer | null
Required range: x >= 0
size
integer
default:15
Required range: 1 <= x <= 200

Response

Successful Response

page
Page · object
required
total
integer
required
Required range: x >= 0
data
SolanaDelegatorStakeAuthoritySummary · object[]
required
next
string | null