/v1/games
Search games
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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",
"
…