/v1/leaderboard
A ranked leaderboard
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/wynncraft-api/v1/leaderboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wynncraft-api/v1/leaderboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wynncraft-api/v1/leaderboard");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/wynncraft-api/v1/leaderboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"type": "totalGlobalLevel",
"count": 20,
"leaderboard": [
{
"xp": 100456382524,
"name": "redacted",
"rank": 1,
"uuid": "redacted",
"score": 25571,
"playtime": 12872.83
},
{
"xp": 10935813809,
"name": "Krokofant",
"rank": 2,
"uuid": "7181f903-7849-49b4-9d5c-2f94ecb67313",
"score": 24522,
"playtime": 16107.5
},
{
"xp": 3904806923,
"name": "Rexshell",
"rank": 3,
"uuid": "63fac5fc-806d-419a-b715-c1e7c60f3ebb",
"score": 24166,
"playtime": 12961.33
},
{
"xp": 1303739906,
"name": "conniesunshine",
"rank": 4,
"uuid": "0026e281-0f15-45d8-a9fa-6bd40ad6681b",
"score": 23469,
"playtime": 6706.17
},
{
"xp": 6432285546,
"name": "nasiuduk",
"rank": 5,
"uuid": "3653daf4-be1f-418c-a71c-bfc88c3a9387",
"score": 23282,
"playtime": 4375
},
{
"xp": 18540459528,
"name": "Tannslee",
"rank": 6,
"uuid": "cc93d0cd-5c73-4dde-bb0f-f65902cf9c89",
"score": 22877,
"playtime": 6346.33
},
{
"xp": 10017473768,
"name": "NOMOREWORRY",
"rank": 7,
"uuid": "94ca1941-e8ba-4343-873d-74c9ef1a2c77",
"score": 22590,
"playtime": 3768.42
},
{
"xp": 288402226800,
"name": "koprr",
"rank": 8,
"uuid": "72250a1d-144c-48d8-8223-1209ffcaf82d",
"score": 22486,
"playtime": 9092.67
},
{
"xp": 3219468282,
"name": "littlecat0214",
"rank": 9,
"uuid": "d34764bf-38bd-4317-b7d6-dd71cf94271b",
"score": 22020,
"playtime": 3588.25
},
{
"xp": 2775586239,
"name": "VHoltz_",
"rank": 10,
"uuid": "b1b8d770-62a4-44e5-a6e8-68d8c7104ce8",
"score": 21877,
"playtime": 13939.83
},
{
"xp": 6598519609,
"name": "redacted",
"rank": 11,
"uuid": "redacted",
"score": 21298,
"playtime": 7687.5
},
{
"xp": 12540405635,
"name": "AndrQwQ",
"
…