Skip to main content
GET
/
v1
/
solana
/
network
/
geolocation
/
latency
Get daily vote latency across all geolocations
curl --request GET \
  --url https://api.rated.network/v1/solana/network/geolocation/latency \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "day": "2023-12-25",
      "fromSlot": 1,
      "toSlot": 1,
      "country": "<string>",
      "city": "<string>",
      "hostingProvider": "<string>",
      "medianVoteLatency": 123
    }
  ]
}
To use this endpoint, a day must be specified. The endpoint then returns all available median vote latency data across all data center/hosting provider locations for the specified date.
Earliest data available is from November 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

date
string<date>
required

UTC date to retrieve data for

sortOrder
enum<string>
default:asc
Available options:
asc,
desc
sortBy
enum<string>
default:latency

Choose between latency, country, city or hostingProvider

Available options:
networkPenetration,
raver,
delegatorApy,
latency,
country,
city,
hostingProvider

Response

Successful Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
SolanaNetworkGeolocationDailyLatency · object[]
required