Skip to main content
GET
/
v0
/
solana
/
delegators
/
stakeAccounts
/
{stake_account}
/
rewards
Delegator Stats
curl --request GET \
  --url https://api.rated.network/v0/solana/delegators/stakeAccounts/{stake_account}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "page": {
    "from": 123,
    "to": 123,
    "granularity": "3k",
    "size": 1
  },
  "total": 1,
  "data": [
    {
      "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": "<string>",
      "stakingCommissionPaid": "<string>",
      "delegatedStake": "<string>",
      "mevRewards": "<string>",
      "mevCommissionPaid": "<string>",
      "missedStakingRewards": "<string>",
      "validatorVoteAccount": "<string>",
      "validatorName": "<string>",
      "voteCommissionRate": "<string>",
      "mevCommissionRate": "<string>",
      "balance": "<string>",
      "mevClaims": [
        {
          "slotNumber": 1,
          "claimedAmount": 1,
          "commissionRate": "<string>",
          "transactionIndex": 1
        }
      ]
    }
  ],
  "next": "<string>"
}

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

from
any | null

UTC day

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

Response

Successful Response

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