Skip to main content
GET
/
v1
/
cosmos
/
validators
/
{validator_address}
/
rewards
Get validator rewards metrics
curl --request GET \
  --url https://api.rated.network/v1/cosmos/validators/{validator_address}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "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.

Authorizations

Authorization
string
header
required

Path Parameters

validator_address
string
required

Query Parameters

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

Response

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