Zum Inhalt springen
GET /v1/player

Profile + 4K & 7K competitive stats

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/quaver-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": 1,
        "modes": {
            "4k": {
                "grades": {
                    "a": 33,
                    "b": 7,
                    "c": 1,
                    "d": 0,
                    "s": 322,
                    "x": 1,
                    "ss": 73
                },
                "accuracy": 98.45,
                "max_combo": 3588,
                "fail_count": 335,
                "play_count": 1737,
                "rank_global": 2247,
                "total_score": 1369901500,
                "rank_country": 1,
                "ranked_score": 699831269,
                "performance_rating": 706.64
            },
            "7k": {
                "grades": {
                    "a": 22,
                    "b": 16,
                    "c": 0,
                    "d": 0,
                    "s": 51,
                    "x": 0,
                    "ss": 2
                },
                "accuracy": 93.56,
                "max_combo": 625,
                "fail_count": 15,
                "play_count": 163,
                "rank_global": 5829,
                "total_score": 113870577,
                "rank_country": 1,
                "ranked_score": 99903254,
                "performance_rating": 123.8
            }
        },
        "source": "Quaver",
        "twitch": null,
        "country": "UM",
        "twitter": "Swanuh",
        "clan_tag": "Swan",
        "username": "Swan",
        "avatar_url": "https://avatars.steamstatic.com/3c4f2eaab9e5e41dfb1706d21d654a81e525972a_full.jpg",
        "registered": "2090-12-01T05:00:00Z",
        "latest_activity": "2024-11-24T18:38:55.969Z"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:39.742Z",
        "request_id": "0af127c6-ea57-431a-9b45-7c79f374f1cf"
    },
    "status": "ok",
    "message": "Player retrieved successfully",
    "success": true
}