GET
/
v1
/
polygon
/
validators
/
{validator_id}
/
state
curl --request GET \
  --url https://api.rated.network/v1/polygon/validators/{validator_id}/state \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/polygon/validators/{validator_id}/state?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/polygon/validators/{validator_id}/state?limit=10&offset=10",
  "results": [
    [
      {
        "checkpoint": 53105,
        "commissionRate": 0.1,
        "delegatedStake": 920000,
        "delegatorCount": 200,
        "selfStake": 80000,
        "timestamp": "2021-09-01T00:00:00Z",
        "totalStake": 1000000
      }
    ]
  ]
}

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.