Naar de inhoud
GET /v1/scoreboard

Games & scores

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cbb-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 1,
        "games": [
            {
                "id": "401856600",
                "away": {
                    "id": "41",
                    "logo": "https://a.espncdn.com/i/teamlogos/ncaa/500/41.png",
                    "rank": 2,
                    "team": "UConn Huskies",
                    "score": "63",
                    "record": "34-6",
                    "winner": false,
                    "home_away": "away",
                    "abbreviation": "CONN"
                },
                "date": "2026-04-07T00:50Z",
                "home": {
                    "id": "130",
                    "logo": "https://a.espncdn.com/i/teamlogos/ncaa/500/130.png",
                    "rank": 1,
                    "team": "Michigan Wolverines",
                    "score": "69",
                    "record": "37-3",
                    "winner": true,
                    "home_away": "home",
                    "abbreviation": "MICH"
                },
                "name": "UConn Huskies at Michigan Wolverines",
                "clock": "0:00",
                "venue": "Lucas Oil Stadium",
                "period": 2,
                "status": "Final",
                "broadcast": "TBS",
                "completed": true,
                "short_name": "CONN VS MICH",
                "season_type": 3
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:07.277Z",
        "request_id": "e75e8878-4d5d-4033-b745-8715a880aca7"
    },
    "status": "ok",
    "message": "Scoreboard retrieved successfully",
    "success": true
}