Ir al contenido
GET /v1/game

A single game's detail

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/cbb-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "game": {
            "id": "401856600",
            "name": "UConn Huskies at Michigan Wolverines",
            "teams": [
                {
                    "id": "130",
                    "team": "Michigan Wolverines",
                    "score": "69",
                    "record": "37-3",
                    "winner": true,
                    "home_away": "home",
                    "linescores": [
                        "33",
                        "36"
                    ],
                    "abbreviation": "MICH"
                },
                {
                    "id": "41",
                    "team": "UConn Huskies",
                    "score": "63",
                    "record": "34-6",
                    "winner": false,
                    "home_away": "away",
                    "linescores": [
                        "29",
                        "34"
                    ],
                    "abbreviation": "CONN"
                }
            ],
            "venue": "Lucas Oil Stadium",
            "status": "Final",
            "leaders": [
                {
                    "value": "19",
                    "athlete": "Elliot Cadeau"
                },
                {
                    "value": "17",
                    "athlete": "Alex Karaban"
                }
            ],
            "completed": true
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:04.136Z",
        "request_id": "1b34058b-3f7a-4f10-bf99-ff6cbd7cfb85"
    },
    "status": "ok",
    "message": "Game retrieved successfully",
    "success": true
}