Zum Inhalt springen
GET /v1/scoreboard

Games & scores

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/nfl-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "week": 1,
        "count": 16,
        "games": [
            {
                "id": "401872656",
                "away": {
                    "id": "17",
                    "logo": "https://a.espncdn.com/i/teamlogos/nfl/500/scoreboard/ne.png",
                    "team": "New England Patriots",
                    "score": "0",
                    "winner": false,
                    "home_away": "away",
                    "abbreviation": "NE"
                },
                "date": "2026-09-10T00:20Z",
                "home": {
                    "id": "26",
                    "logo": "https://a.espncdn.com/i/teamlogos/nfl/500/scoreboard/sea.png",
                    "team": "Seattle Seahawks",
                    "score": "0",
                    "winner": false,
                    "home_away": "home",
                    "abbreviation": "SEA"
                },
                "name": "New England Patriots at Seattle Seahawks",
                "week": 1,
                "clock": "0:00",
                "venue": "Lumen Field",
                "period": 0,
                "status": "Scheduled",
                "broadcast": "NBC",
                "completed": false,
                "short_name": "NE @ SEA",
                "season_type": 2
            },
            {
                "id": "401872657",
                "away": {
                    "id": "25",
                    "logo": "https://a.espncdn.com/i/teamlogos/nfl/500/scoreboard/sf.png",
                    "team": "San Francisco 49ers",
                    "score": "0",
                    "winner": false,
                    "home_away": "away",
                    "abbreviation": "SF"
                },
                "date": "2026-09-11T00:35Z",
                "home": {
                    "id": "14",
                    "logo": "https://a.espncdn.com/i/teamlogos/nfl/500/scoreboard/lar.png",
                    "team": "Los Angeles Rams",
                    "score": "0",
                    "winner": false,
                    "home_away": "home",
                    "abbreviation": "LAR"
                },
                "name": "San Francisco 49ers at Los Angeles Rams",
                "week": 1,
                "clock": "0:00",
                "venue": "Melbourne Cricket Ground",
                "period": 0,
                "status": "Scheduled",
                "broadcast": "Netflix",
                "completed": false,
                "short_name": "SF VS LAR",
                "season_type": 2
            },
            {
                "id": "401872925",
                "away": {
                    "id": "27",
                    "logo": "https://a.espncdn.com/i/teamlogos/nfl/500/scoreboard/tb.png",
                    "team": "Tampa Bay Buccaneers",
                    "score": "0",
                    "winner": false,
                    "home_away": "away",
                    "abbreviation": "TB"
                },
               
…