Aller au contenu
GET /v1/games

Search games

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/speedrun-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/speedrun-api/v1/games" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/speedrun-api/v1/games", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/speedrun-api/v1/games");
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/speedrun-api/v1/games",
    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": {
        "count": 10,
        "games": [
            {
                "id": "m1mezg4d",
                "name": "New Super Mario Game",
                "weblink": "https://www.speedrun.com/nsmg",
                "released": 2026,
                "abbreviation": "nsmg"
            },
            {
                "id": "yd477mgd",
                "name": "64 Mario in Baldi's Basics Classic",
                "weblink": "https://www.speedrun.com/64_Mario_in_Baldis_Basics_Classic",
                "released": 2026,
                "abbreviation": "64_Mario_in_Baldis_Basics_Classic"
            },
            {
                "id": "k6q9p291",
                "name": "Super Mario Odyssey Boss Rush",
                "weblink": "https://www.speedrun.com/SMOBR",
                "released": 2026,
                "abbreviation": "SMOBR"
            },
            {
                "id": "9d37wr06",
                "name": "Super Mario Bros. Daredevil Edition",
                "weblink": "https://www.speedrun.com/smbde",
                "released": 2026,
                "abbreviation": "smbde"
            },
            {
                "id": "yd47oqxd",
                "name": "Mario Tennis Fever",
                "weblink": "https://www.speedrun.com/Mario_Tennis_Fever",
                "released": 2026,
                "abbreviation": "Mario_Tennis_Fever"
            },
            {
                "id": "9doko0k1",
                "name": "Super Mario Bros 0.5",
                "weblink": "https://www.speedrun.com/Super_Mario_Bros_05",
                "released": 2026,
                "abbreviation": "Super_Mario_Bros_05"
            },
            {
                "id": "w6j97q5d",
                "name": "Super Mario Bros. 13",
                "weblink": "https://www.speedrun.com/Super_Mario_Bros_13",
                "released": 2026,
                "abbreviation": "Super_Mario_Bros_13"
            },
            {
                "id": "m1m7vo41",
                "name": "Ninji Burst!",
                "weblink": "https://www.speedrun.com/Ninji_Burst",
                "released": 2025,
                "abbreviation": "Ninji_Burst"
            },
            {
                "id": "46wrp891",
                "name": "Marios Christmas Adventure 2",
                "weblink": "https://www.speedrun.com/Marios_Christmas_Adventure_2",
                "released": 2025,
                "abbreviation": "Marios_Christmas_Adventure_2"
            },
            {
                "id": "nd27pq31",
                "name": "Smooth Mario Bros.",
                "weblink": "https://www.speedrun.com/Smooth_Mario_Bros",
                "released": 2025,
                "abbreviation": "Smooth_Mario_Bros"
            }
        ],
        "query": "mario"
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:40.510Z",
        "request_id": "734739ba-6631-47dd-a7c9-498572cd1435"
    },
    "status": "ok",
    "message": "Games retrieved",
    "
…