/v1/leaderboard
Global ranked ladder for a mode
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/quaver-api/v1/leaderboard" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/quaver-api/v1/leaderboard", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/quaver-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/quaver-api/v1/leaderboard",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"mode": "4k",
"page": 0,
"count": 50,
"source": "Quaver",
"players": [
{
"id": 388808,
"country": "AR",
"accuracy": 99.61,
"clan_tag": null,
"username": "saragi32",
"play_count": 852,
"rank_global": 1,
"performance_rating": 1031.35
},
{
"id": 248468,
"country": "PH",
"accuracy": 99.35,
"clan_tag": "ARG",
"username": "AstolfoFanboy",
"play_count": 3574,
"rank_global": 2,
"performance_rating": 1031.17
},
{
"id": 15441,
"country": "US",
"accuracy": 99.3,
"clan_tag": null,
"username": "Legendary Ace",
"play_count": 1792,
"rank_global": 3,
"performance_rating": 1023.58
},
{
"id": 4449,
"country": "PH",
"accuracy": 99.53,
"clan_tag": "ARG",
"username": "ARG jja",
"play_count": 673,
"rank_global": 4,
"performance_rating": 1021.26
},
{
"id": 772185,
"country": "ES",
"accuracy": 99.49,
"clan_tag": "TNS",
"username": "GDNoob25xd",
"play_count": 715,
"rank_global": 5,
"performance_rating": 1009.64
},
{
"id": 29951,
"country": "HK",
"accuracy": 99.53,
"clan_tag": "QC",
"username": "Koshepen",
"play_count": 11624,
"rank_global": 6,
"performance_rating": 1004.44
},
{
"id": 2553,
"country": "US",
"accuracy": 99.41,
"clan_tag": null,
"username": "neptunefun",
"play_count": 444,
"rank_global": 7,
"performance_rating": 1004.28
},
{
"id": 264703,
"country": "NO",
"accuracy": 99.49,
"clan_tag": null,
"username": "Rushenality",
"play_count": 1461,
"rank_global": 8,
"performance_rating": 1001.23
},
{
"id": 45982,
"country": "VN",
"accuracy": 99.3,
"clan_tag": "TNS",
"username": "LovelyL",
"play_count": 899,
"rank_global": 9,
"performance_rating": 1000.59
},
{
…