GET
/
v1
/
polygon
/
validators
/
{validator_id}
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/polygon/validators/{validator_id}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/polygon/validators/{validator_id}/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/polygon/validators/{validator_id}/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "checkpoint": 54664,
        "checkpointProposalRewards": 250.3,
        "checkpointSignatureRewards": 1200.45,
        "commissionRewards": 90.03,
        "delegatorRewards": 810.32,
        "distributedRewards": 900.35,
        "mevRewards": 25,
        "missedCheckpointProposalRewards": 25,
        "missedCheckpointSignatureRewards": 50.75,
        "missedCommissionRewards": 3.81,
        "missedDelegatorRewards": 34.26,
        "missedDistributedRewards": 38.07,
        "missedSelfSigningRewards": 12.68,
        "priorityFees": 75.5,
        "selfSigningRewards": 300.1,
        "timestamp": "2021-09-01T00:00:00Z",
        "validatorId": 103
      },
      {
        "checkpointProposalRewards": 3000.45,
        "checkpointSignatureRewards": 15000.75,
        "commissionRewards": 1150.05,
        "day": "2021-09-01",
        "delegatorRewards": 10350.5,
        "distributedRewards": 11500.55,
        "fromCheckpoint": 54664,
        "mevRewards": 325.5,
        "missedCheckpointProposalRewards": 300.1,
        "missedCheckpointSignatureRewards": 750.25,
        "missedCommissionRewards": 57.52,
        "missedDelegatorRewards": 517.68,
        "missedDistributedRewards": 575.2,
        "missedSelfSigningRewards": 175.05,
        "priorityFees": 850.75,
        "selfSigningRewards": 3500.2,
        "toCheckpoint": 54680,
        "validatorId": 103
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

validator_id
integer
required
Required range: x >= 0

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

from
to
any | null
granularity
enum<string> | null
Available options:
checkpoint,
day

Response

200
application/json

Successful Response

The response is of type object.