Skip to main content
GET
/
v0
/
polygon
/
validators
Validator Summaries
curl --request GET \
  --url https://api.rated.network/v0/polygon/validators \
  --header 'Authorization: Bearer <token>'
{
  "page": {
    "from": 123,
    "to": 123,
    "granularity": "checkpoint",
    "size": 1
  },
  "total": 1,
  "data": [
    {
      "validatorId": 1,
      "timeWindow": "1d",
      "name": "<string>",
      "currentState": "<string>",
      "networkPenetration": "<string>",
      "validatorApr": "<string>",
      "heimdallCheckpointApr": "<string>",
      "borProposalApr": "<string>",
      "netValidatorApr": "<string>",
      "commissionRate": "<string>",
      "delegatorApr": "<string>",
      "effectiveness": "<string>",
      "delegationAmount": "<string>",
      "delegationPercentage": "<string>"
    }
  ],
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

window
enum<string>
required
Available options:
1d,
7d,
30d,
all
delegatorAddress
string | null

The delegator address to filter by.

from
integer | null
Required range: x >= 0
size
integer
default:15

Response

Successful Response

page
Page · object
required
total
integer
required
Required range: x >= 0
data
PolygonValidatorSummary · object[]
required
next
string | null