Skip to main content
GET
/
v1
/
babylon
/
network
/
rewards
Get network rewards metrics
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

Query Parameters

limit
integer
default:10
offset
integer
default:0
fromDate
string<date> | null
Examples:
toDate
string<date> | null
Examples:

Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
BabylonNetworkRewards · object[]
required