Vai al contenuto
GET /v1/scoreboard

Games & scores

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/nfl-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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"
                },
               
…