Skip to main content
GET
/
v1
/
solana
/
delegators
/
stakeAccounts
/
{stake_account}
/
rewards
Get stake account rewards metrics
curl --request GET \
  --url https://api.rated.network/v1/solana/delegators/stakeAccounts/{stake_account}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "stakeAccount": "<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,
      "status": "<string>",
      "stakingRewards": 123,
      "stakingCommissionPaid": 123,
      "delegatedStake": 123,
      "mevRewards": 123,
      "mevCommissionPaid": 123,
      "missedStakingRewards": 123,
      "validatorVoteAccount": "<string>",
      "validatorName": "<string>",
      "voteCommissionRate": 123,
      "mevCommissionRate": 123,
      "balance": 123,
      "mevClaims": [
        {
          "slotNumber": 1,
          "claimedAmount": 1,
          "commissionRate": "<string>",
          "transactionIndex": 1
        }
      ]
    }
  ]
}

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<date> | null

End date

Example:

"2023-12-31"

fromDate
string<date> | null

Start date

Example:

"2023-01-01"

from
any | null
deprecated

UTC day (deprecated in favour of fromDate)

Response

Successful Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
SolanaDelegatorRewards · object[]
required