GET
/
v1
/
polkadot
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/polkadot/network/rewards
{
  "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.

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

Example:

"2023-01-01"

toDate
string | null

End date

Example:

"2023-12-31"

Response

200
application/json
Successful Response
previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
object[]
required