GET
/
v1
/
cosmos
/
validators
/
{validator_address}
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/cosmos/validators/{validator_address}/rewards
{
  "next": "https://api.rated.network//v1/cosmos/validators/{validator_address}/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/cosmos/validators/{validator_address}/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "accountAddress": "cosmos1hjadhj9nqzpye2vkmkz4thahhd0z8dh3eer4jx",
        "commissionRate": 0.05,
        "day": "2024-11-25",
        "fromBlockNumber": 23167650,
        "toBlockNumber": 23167800,
        "totalCommissionRewards": 1822.0815928513198,
        "totalDelegationRewards": 9110.4079642566,
        "validator": "cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74",
        "validatorMoniker": "Atomic Nodes"
      }
    ]
  ]
}

Using this endpoint, you can query the historical daily rewards of a validator by their unique validator address. totalDelegationRewards are the Cosmos Hub rewards, denominated in ATOM, which delegators are entitled to receive from the validator they have staked to. This includes the rewards towards a validator if they have self-staked/self-bonded. The rewards from the commission a validator charges are given by the totalCommissionRewards.

Path Parameters

validator_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

toDate
string | null

End date

Examples:

"2023-12-31"

fromDate
string | null

Start date

Examples:

"2023-01-01"

Response

200
application/json
Successful Response

The response is of type object.