Skip to main content
GET
/
v1
/
polygon
/
validators
/
{validator_id}
/
rewards
Get validator rewards metrics
curl --request GET \
  --url https://api.rated.network/v1/polygon/validators/{validator_id}/rewards \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "validatorId": 1,
      "checkpointSignatureRewards": 123,
      "selfSigningRewards": 123,
      "distributedRewards": 123,
      "commissionRewards": 123,
      "delegatorRewards": 123,
      "missedCheckpointSignatureRewards": 123,
      "missedSelfSigningRewards": 123,
      "missedDistributedRewards": 123,
      "missedCommissionRewards": 123,
      "missedDelegatorRewards": 123,
      "checkpointProposalRewards": 123,
      "missedCheckpointProposalRewards": 123,
      "priorityFees": 123,
      "mevRewards": 123,
      "checkpoint": 1,
      "timestamp": "2023-11-07T05:31:56Z",
      "day": "2023-12-25",
      "fromCheckpoint": 1,
      "toCheckpoint": 1
    }
  ]
}
Polygon on the Rated API is under maintenancePlease check our changelog for the latest updates.

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
unknown
granularity
enum<string> | null
Available options:
checkpoint,
day

Response

Successful Response

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