GET
/
v1
/
celestia
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/celestia/network/rewards
{
  "next": "https://api.rated.network//v1/celestia/network/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/celestia/network/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "avgCommissionRate": 0.105,
        "day": "2025-01-21",
        "fromBlockNumber": 3636438,
        "toBlockNumber": 3652841,
        "totalBondedValidators": 200,
        "totalCommissionRewards": 1822.081,
        "totalDelegationRewards": 9110.407
      }
    ]
  ]
}

Using this endpoint, you can query the total historical daily rewards at the network-level for the specific day. totalDelegationRewards are the Celestia rewards, denominated in TIA, 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.

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