GET
/
v1
/
babylon
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/babylon/network/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/babylon/network/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/babylon/network/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "avgCommissionRate": 0.09307,
        "day": "2025-01-21",
        "fromBlockNumber": 100001,
        "toBlockNumber": 107701,
        "totalBondedValidators": 100,
        "totalCommissionRewards": 137112.267,
        "totalDelegationRewards": 1401333.338
      }
    ]
  ]
}

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

totalDelegationRewards are the Babylon rewards, denominated in the network’s native token, which delegators are entitled to receive from the validators they have staked to. This includes the rewards towards validators that have self-staked/self-bonded. The rewards from the commissions validators charge are given by the totalCommissionRewards.

You can use the fromDate and toDate parameters to query a range of days.

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.