GET
/
v1
/
solana
/
delegators
/
stakeAccounts
/
{stake_account}
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/solana/delegators/stakeAccounts/{stake_account}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/solana/delegators/stakeAccounts/{stake_account}/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/solana/delegators/stakeAccounts/{stake_account}/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "balance": 10.61,
        "day": "2024-04-04",
        "delegatedStake": 4.61,
        "fromEpoch": 597,
        "fromSlot": 258212466,
        "fromTimestamp": "2024-04-04 00:00:00",
        "mevClaims": [
          {
            "claimedAmount": 1000,
            "commissionRate": 0.07,
            "slotNumber": 258212466
          },
          {
            "claimedAmount": 2000,
            "commissionRate": 0.07,
            "slotNumber": 258394459
          }
        ],
        "mevCommissionPaid": 0,
        "mevCommissionRate": 0.07,
        "mevRewards": 0,
        "missedStakingRewards": 0,
        "stakeAccount": "123FPQtifVXkooNAhiYiKeoQaL9tD9kkY5mQvGRwnLy2",
        "stakingCommissionPaid": 0.0001,
        "stakingRewards": 0.002,
        "status": "active",
        "toEpoch": 598,
        "toSlot": 258394459,
        "toTimestamp": "2024-04-04 23:59:59",
        "validatorName": "Ledger by Figment",
        "validatorVoteAccount": "26pV97Ce83ZQ6Kz9XT4td8tdoUFPTng8Fb8gPyc53dJx",
        "voteCommissionRate": 0.07
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

stake_account
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

Examples:

"2023-12-31"

fromDate
string | null

Start date

Examples:

"2023-01-01"

from
any
deprecated

UTC day (deprecated in favour of fromDate)

Response

200
application/json

Successful Response

The response is of type object.