GET
/
v1
/
polkadot
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/polkadot/network/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/polkadot/network/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/polkadot/network/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "day": "2025-01-01",
        "totalActiveValidators": 500,
        "totalDelegatorRewards": 748899.8861382433,
        "totalNominators": 280594,
        "totalValidatorRewards": 79818.2913546641
      }
    ]
  ]
}

Using this endpoint, you can query the historical daily rewards at the network-level for a specific day. In terms of timing, we align these rewards according to when these rewards were claimed by validators and nominators.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

fromDate
string | null

Start date

Examples:

"2023-01-01"

toDate
string | null

End date

Examples:

"2023-12-31"

Response

200
application/json

Successful Response

The response is of type object.