/v1/scores
Player plays with pp + accuracy
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/scoresaber-api/v1/scores" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scoresaber-api/v1/scores", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scoresaber-api/v1/scores");
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/scores",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"id": "1922350521131465",
"sort": "top",
"count": 10,
"scores": [
{
"pp": 805.44,
"song": "1nput This 2 Y0ur Spine",
"score": 2081872,
"stars": 13.32,
"mapper": "Voidless & CMP1111",
"set_at": "2026-01-24T03:57:56.000Z",
"headset": 0,
"difficulty": "Expert+",
"full_combo": true,
"score_rank": 1,
"song_author": "Camellia",
"accuracy_pct": 97.66,
"missed_notes": 0
},
{
"pp": 800.92,
"song": "Echoes of Memoria",
"score": 3057188,
"stars": 13.11,
"mapper": "Fnyt & THMX",
"set_at": "2026-01-17T20:54:13.000Z",
"headset": 0,
"difficulty": "Expert+",
"full_combo": true,
"score_rank": 1,
"song_author": "Ludicin",
"accuracy_pct": 97.7039,
"missed_notes": 0
},
{
"pp": 784.7,
"song": "Zetsubou MENBRE GIRL",
"score": 1821302,
"stars": 11.01,
"mapper": "Gabriel",
"set_at": "2026-04-20T03:51:24.000Z",
"headset": 0,
"difficulty": "Expert+",
"full_combo": true,
"score_rank": 1,
"song_author": "0.1g no Gosan",
"accuracy_pct": 98.2409,
"missed_notes": 0
},
{
"pp": 781.87,
"song": "BUCK WILD",
"score": 2540355,
"stars": 13.34,
"mapper": "Bitz & Joshabi",
"set_at": "2026-01-09T03:04:14.000Z",
"headset": 0,
"difficulty": "Expert+",
"full_combo": true,
"score_rank": 1,
"song_author": "t+pazolite",
"accuracy_pct": 97.5321,
"missed_notes": 0
},
{
"pp": 781.14,
"song": "Light it up",
"score": 2101812,
"stars": 11.8,
"mapper": "tecmonke & Cyanite",
"set_at": "2026-04-04T02:59:09.000Z",
"headset": 0,
"difficulty": "Expert",
"full_combo": true,
"score_rank": 1,
"song_author": "Camellia",
"accuracy_pct": 98.0032,
"missed_notes": 0
},
{
"pp": 777.5,
"song": "Ashed Wings",
"score": 1802756,
"stars": 10.82,
"mapper": "VoltageO",
"set_at": "2026-04-20T02:41:15.000Z",
"heads
…