GET
/
v1
/
babylon
/
delegators
/
{delegator_address}
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/babylon/delegators/{delegator_address}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/babylon/delegators/{delegator_address}/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/babylon/delegators/{delegator_address}/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "day": "2025-01-21",
        "delegator": "bbn1g6tgaz3pmk03gvgndh8rwrv5yktrjhvvvyaplq",
        "delegatorRewards": 4523.5223,
        "fromBlockNumber": 100001,
        "toBlockNumber": 107701,
        "validator": "bbnvaloper109x4ruspxarwt62puwcenhclw36l9v7j92f0ex"
      }
    ]
  ]
}

Using this endpoint, you can query the historical daily rewards of a delegator by their unique delegator_address across validators they have delegated to.

delegatorRewards are the Babylon rewards, denominated in the network’s native token, which delegators are entitled to receive from the validator they have staked to. The validator they have staked to is given by the validator address field.

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.

Path Parameters

delegator_address
string
required

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.