Skip to main content
GET
/
v0
/
solana
/
delegators
/
stakeAuthorities
/
{stake_authority}
/
rewards
Stake Authority Stats
curl --request GET \
  --url https://api.rated.network/v0/solana/delegators/stakeAuthorities/{stake_authority}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "page": {
    "from": 123,
    "to": 123,
    "granularity": "3k",
    "size": 1
  },
  "total": 1,
  "data": [
    {
      "stakeAuthority": "<string>",
      "day": "2023-12-25",
      "fromTimestamp": "2023-11-07T05:31:56Z",
      "toTimestamp": "2023-11-07T05:31:56Z",
      "fromSlot": 1,
      "toSlot": 1,
      "fromEpoch": 1,
      "toEpoch": 1,
      "stakingRewards": "<string>",
      "stakingCommissionPaid": "<string>",
      "delegatedStake": "<string>",
      "validatorDelegates": 1,
      "mevRewards": "<string>",
      "mevCommissionPaid": "<string>",
      "missedStakingRewards": "<string>",
      "delegations": [
        {
          "validatorVoteAccount": "<string>",
          "validatorName": "<string>",
          "percentage": "<string>"
        }
      ],
      "blendedVoteCommissionRate": "<string>",
      "blendedMevCommissionRate": "<string>"
    }
  ],
  "next": "<string>"
}
These endpoints return information about the rewards received by a delegator (stake account or stake authority), including MEV rewards it has claimed, and commissions it has paid. The data can be broken down at a daily level. Here’s how to interpret the inputs required to operate it 👇
ParameterContext
fromStarting UTC date (e.g. from=“2024-04-22”).
sizeThe number of results included per page

Authorizations

Authorization
string
header
required

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

Path Parameters

stake_authority
string
required

Query Parameters

from
any | null

UTC day

size
integer
default:15
Required range: 1 <= x <= 200
includeDelegations
boolean
default:false

Include stake percentage of individual delegations in the results

Response

Successful Response

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