Endpoint
Leaderboard
Returns a paginated slice of the ranked ladder along with the current proxy and health markers used by the site header.
Request
GET https://vise.network/api/v1/leaderboard?offset=0&limit=20Query parameters
| Param | Type | Meaning |
|---|---|---|
| offset | number | Starting row to return. |
| limit | number | How many rows to return in this page. |
Example response
{
"offset": 0,
"limit": 2,
"proxy": "ME-1",
"healthy": "YES",
"entries": [
{
"rank": 1,
"uuid": "ca4a94c5-8b9f-40ae-863b-49e4139dc836",
"name": "Dukaxhin",
"elo": 1090,
"skinUrl": "https://mc-api.io/render/bust/Dukaxhin/java?size=256",
"profileUrl": "/api/v1/player/ca4a94c5-8b9f-40ae-863b-49e4139dc836"
}
]
}
Usage notes
The site keeps loading batches until it reaches 200 rows or the endpoint returns fewer entries than requested. Each entry includes enough data to render the row button directly without making another request.