GET
/
v0
/
solana
/
delegators
/
stakeAuthorities
/
{stake_authority}
/
rewards
curl --request GET \
  --url https://api.rated.network/v0/solana/delegators/stakeAuthorities/{stake_authority}/rewards
{
  "page": {
    "from": 123,
    "to": 123,
    "granularity": "3k",
    "size": 1
  },
  "total": 1,
  "data": [
    {
      "blendedMevCommissionRate": 0.07,
      "blendedVoteCommissionRate": 0.07,
      "day": "2024-04-04",
      "delegatedStake": 4.61,
      "delegations": [
        {
          "percentage": 0.8,
          "validatorName": "Ledger by Figment",
          "validatorVoteAccount": "26pV97Ce83ZQ6Kz9XT4td8tdoUFPTng8Fb8gPyc53dJx"
        },
        {
          "percentage": 0.2,
          "validatorName": "Aurora Validator",
          "validatorVoteAccount": "34yvUa2fxfm2tUqxFEj9PHrVNwCcdzd51eo9hntWpZRs"
        }
      ],
      "fromEpoch": 597,
      "fromSlot": 258212466,
      "fromTimestamp": "2024-04-04 00:00:00",
      "mevCommissionPaid": 0,
      "mevRewards": 0,
      "missedStakingRewards": 0,
      "stakeAuthority": "q9XWcZ7T1wP4bW9SB4XgNNwjnFEJ982nE8aVbbNuwot",
      "stakingCommissionPaid": 0.0001,
      "stakingRewards": 0.002,
      "toEpoch": 598,
      "toSlot": 258394459,
      "toTimestamp": "2024-04-04 23:59:59",
      "validatorDelegates": 2
    }
  ],
  "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

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

200
application/json
Successful Response
page
object
required
total
integer
required
Required range: x > 0
data
object[]
required
next
string | null