Ir al contenido
GET /v1/scores

Player plays with pp + accuracy

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/scoresaber-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
…