GET
/
v1
/
cardano
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/cardano/network/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/cardano/network/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/cardano/network/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "avgPoolFee": 0.105,
        "avgPoolFlatFee": 10500.22,
        "day": "2025-01-01",
        "epoch": 531,
        "fromBlockNumber": 11292758,
        "fromSlotNumber": 144123334,
        "toBlockNumber": 11297086,
        "toSlotNumber": 144209693,
        "totalActivePools": 200,
        "totalEarnedDelegatorRewards": 3636438.165,
        "totalEarnedValidatorRewards": 3652841.165,
        "totalRealizedDelegatorRewards": 3636438.165,
        "totalRealizedValidatorRewards": 3652841.165
      }
    ]
  ]
}

Using this endpoint, you can query the historical daily rewards at the network-level for a specific day.

totalRealizedDelegatorRewards and totalRealizedValidatorRewards refer to rewards already distributed to the members/delegators and stake pool owners/validators respectively based on the epoch when they were distributed. Meanwhile, totalEarnedDelegatorRewards and totalEarnedValidatorRewards refer to the rewards earned for an epoch but not yet distributed. These rewards are already net of the 20% cut that the treasury takes. These rewards are denominated in ADA.

In terms of timing, we align these rewards according to the day when an epoch ended.

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.