GET
/
v1
/
solana
/
validators
/
{validator_id}
/
summary
curl --request GET \
  --url https://api.rated.network/v1/solana/validators/{validator_id}/summary
{
  "delegatorApy": 0.05,
  "effectiveness": 0.984,
  "mevCommissionRate": 0.05,
  "name": "name",
  "networkPenetration": 0.24,
  "stakeAccountCount": 100,
  "timeWindow": "30d",
  "validatorApy": 0.05,
  "validatorIdentity": "validatorIdentity",
  "validatorName": "validatorName",
  "voteAccount": "voteAccount",
  "voteCommissionRate": 0.05,
  "voteLatency": 2.984
}

This endpoint returns high level information about validators over the time period such as their respective entity names, network penetration, annual percentage yield (APY), and effectiveness.

On the 1d time period, the APY takes into account the rewards received for the last 3 days to smooth out the noise given Solana’s staking rewards schedule, which is every epoch (~2 days).

Path Parameters

validator_id
string
required

Query Parameters

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

Response

200
application/json
Successful Response

The response is of type object.