GET
/
v1
/
solana
/
network
/
effectiveness
curl --request GET \
  --url https://api.rated.network/v1/solana/network/effectiveness \
  --header 'Authorization: Bearer <token>'
{
  "next": "https://api.rated.network//v1/solana/network/effectiveness?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/solana/network/effectiveness?limit=10&offset=10",
  "results": [
    [
      {
        "effectiveness": 0.999,
        "fromDate": "2024-01-01",
        "fromSlot": 250000000,
        "missedBlocksRate": 0.999,
        "toDate": "2024-01-01",
        "toSlot": 250200000,
        "voteSuccessRate": 0.999,
        "votingLatency": 0.999
      }
    ]
  ]
}

This endpoint returns historical key performance metrics at the network level. You can choose the covered dates (fromDate,toDate) or ~20 minute slot intervals (fromSlot, toSlot) based on the granularityparameter. By default, it returns the latest daily data.

Earliest data available is from April 1, 2024.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:15

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

toDate
string | null

End date

Examples:

"2023-12-31"

fromDate
string | null

Start date

Examples:

"2023-01-01"

toSlot
integer | null

End slot multiple of 3k

Required range: x >= 0
fromSlot
integer | null

Start slot multiple of 3k

Required range: x >= 0
from
any | null
deprecated

UTC day or slot multiple of 3k

granularity
enum<string>

UTC day or 3k block interval

Available options:
3k,
day

Response

200
application/json

Successful Response

The response is of type object.