GET
/
v1
/
polygon
/
delegators
/
{delegator_address}
/
state
curl --request GET \
  --url https://api.rated.network/v1/polygon/delegators/{delegator_address}/state \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/polygon/delegators/{delegator_address}/state?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/polygon/delegators/{delegator_address}/state?limit=10&offset=10",
  "results": [
    [
      {
        "checkpoint": 53105,
        "delegatorStake": 100000,
        "timestamp": "2021-09-01T00:00:00Z",
        "validatorId": 103
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

delegator_address
string
required

Query Parameters

from_
required
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

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

Response

200
application/json

Successful Response

The response is of type object.