GET
/
v0
/
solana
/
validators
/
{validator_id}
/
performance
/
latency
curl --request GET \
  --url https://api.rated.network/v0/solana/validators/{validator_id}/performance/latency
{
  "page": {
    "from": 123,
    "to": 123,
    "granularity": "3k",
    "size": 1
  },
  "total": 1,
  "data": [
    {
      "latency": 3,
      "voteAccount": "voteAccount",
      "votedSlot": 1224555
    }
  ],
  "next": "<string>"
}

This endpoint returns information related to a single validator’s voting latency (i.e. voting timeliness). For a glossary of the variables returned, see validators.

Here’s how to interpret the inputs required to operate it👇

ParameterDescription
fromStarting slot to get the vote latency from
sizeThe number of results included per page. This is based on slots. For example, to return the voting latency in the last 200 slots, you will need to input size = 200.

Path Parameters

validator_id
string
required

Query Parameters

from
integer | null

Slot to get vote latency from.

Required range: x >= 0
size
integer
default:15
Required range: 1 <= x <= 200

Response

200
application/json
Successful Response

The response is of type object.