GET
/
v1
/
solana
/
delegators
/
stakeAuthorities
/
{stake_authority}
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/solana/delegators/stakeAuthorities/{stake_authority}/rewards
{
  "next": "https://api.rated.network//v1/solana/delegators/stakeAuthorities/{stake_authority}/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/solana/delegators/stakeAuthorities/{stake_authority}/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "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
      }
    ]
  ]
}

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.

Earliest data available is from April 1, 2024.

Path Parameters

stake_authority
string
required

Query Parameters

limit
integer
default:
15

The number of results returned per page

offset
integer
default:
0

The number of results to skip before starting to return

toDate
string | null

End date

fromDate
string | null

Start date

from
any | null
deprecated

UTC day (deprecated in favour of fromDate)

includeDelegations
boolean
default:
false

Include stake percentage of individual delegations in the results

Response

200
application/json
Successful Response
previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x > 0
results
object[]
required