Skip to main content
GET
/
v1
/
polygon
/
validators
/
{validator_id}
/
state
Get validator state metrics
curl --request GET \
  --url https://api.rated.network/v1/polygon/validators/{validator_id}/state \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "totalStake": 123,
      "selfStake": 123,
      "delegatedStake": 123,
      "commissionRate": 123,
      "delegatorCount": 1,
      "checkpoint": 1,
      "timestamp": "2023-12-25",
      "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
PolygonValidatorState · object[]
required