GET
/
v1
/
solana
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/solana/network/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/solana/network/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/solana/network/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "activeStake": 1000,
        "blockRewards": 10,
        "delegatorMevClaimed": 5.89,
        "fromDate": "2024-01-01",
        "fromSlot": 250000000,
        "stakeRewards": 3.15,
        "toDate": "2024-01-01",
        "toSlot": 250200000,
        "totalBalance": 1001,
        "validatorMevClaimed": 2.17,
        "voteCommissionRewards": 1.19
      }
    ]
  ]
}

You can query this endpoint using the fromDate and toDate parameters to set the date range returned by the data. Otherwise it will return the latest daily rewards in descending order.

Earliest data available is from March 24, 2025.

Authorizations

Authorization
string
header
required

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

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

UTC day or slot multiple of 3k

Response

200
application/json

Successful Response

The response is of type object.