Naar de inhoud
GET /v1/leaderboard

Top players worldwide or by country

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/scoresaber-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/scoresaber-api/v1/leaderboard" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scoresaber-api/v1/leaderboard", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scoresaber-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/scoresaber-api/v1/leaderboard",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "page": 1,
        "count": 50,
        "source": "ScoreSaber",
        "country": "DE",
        "players": [
            {
                "id": "2769016623220259",
                "pp": 17722.56,
                "name": "NailikLP",
                "country": "DE",
                "global_rank": 36,
                "country_rank": 1
            },
            {
                "id": "76561198448469526",
                "pp": 16220.14,
                "name": "Dr.Bread",
                "country": "DE",
                "global_rank": 98,
                "country_rank": 2
            },
            {
                "id": "76561198253282811",
                "pp": 15377.35,
                "name": "Taddus",
                "country": "DE",
                "global_rank": 170,
                "country_rank": 3
            },
            {
                "id": "76561199093163807",
                "pp": 15286.95,
                "name": "DJ Alfred",
                "country": "DE",
                "global_rank": 181,
                "country_rank": 4
            },
            {
                "id": "76561198156925313",
                "pp": 14956.75,
                "name": "~Rainz~",
                "country": "DE",
                "global_rank": 215,
                "country_rank": 5
            },
            {
                "id": "76561198442753567",
                "pp": 14454.25,
                "name": "schonk",
                "country": "DE",
                "global_rank": 290,
                "country_rank": 6
            },
            {
                "id": "76561197970820731",
                "pp": 14367.9,
                "name": "hpmflash",
                "country": "DE",
                "global_rank": 305,
                "country_rank": 7
            },
            {
                "id": "76561198158199188",
                "pp": 14311.72,
                "name": "theMJ",
                "country": "DE",
                "global_rank": 316,
                "country_rank": 8
            },
            {
                "id": "1525854644189520",
                "pp": 14167.1,
                "name": "MHT",
                "country": "DE",
                "global_rank": 353,
                "country_rank": 9
            },
            {
                "id": "76561198014365525",
                "pp": 14104.07,
                "name": "Kakifrucht",
                "country": "DE",
                "global_rank": 369,
                "country_rank": 10
            },
            {
                "id": "26424311550506817",
                "pp": 14089.89,
                "name": "Alyng",
                "country": "DE",
                "global_rank": 370,
                "country_rank": 11
            },
            {
                "id": "76561199108728409",
                "pp": 14001.3,
                "name": "SnOwO",
                "country": "DE",
                "global_rank": 385,
                "cou
…