NFL Sunday Game-Day bundle: the whole slate in one call — every game with kickoff, live sc
NFL Sunday Game-Day bundle: the whole slate in one call — every game with kickoff, live score, per-team injury report, consensus Vegas line (spread + total + moneyline via The Odds API), and venue weather (NWS / Open-Meteo, dome-aware). Free-data composed bundle; the fall replacement for the World Cup bundle. Params: date (YYYY-MM-DD, the Sunday), tz_offset (minutes), team (ESPN abbrev, optional).
150000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-29
updated
Provider
fanfare.run · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x41AdeE1eBA2c276bE5e8Cabe0CE523e4dd792170",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "150000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "sports",
"info": {
"input": {
"method": "GET",
"queryParams": {
"date": "2026-09-13",
"team": "DAL"
},
"type": "http"
},
"output": {
"example": {
"data": {
"game_count": 1,
"games": [
{
"away": {
"abbrev": "NE",
"name": "New England Patriots"
},
"game_id": "401671xxx",
"home": {
"abbrev": "NYJ",
"name": "New York Jets"
},
"injury_report": {
"NYJ": [
{
"name": "…",
"note": "hamstring",
"player_id": "1",
"position": "WR",
"status": "Q"
}
]
},
"kickoff_utc": "2026-09-13T17:00:00Z",
"live_score": null,
"status": "scheduled",
"vegas": {
"book_count": 6,
"moneyline_away": 140,
"moneyline_home": -160,
"spread_home": -3,
"total": 42.5
},
"venue": {
"city": "East Rutherford",
"dome": false,
"name": "MetLife Stadium"
},
"weather": {
"dome": false,
"precip_pct": 15,
"source": "nws",
"temp_f": 68,
"wind_dir_deg": 220,
"wind_mph": 9
}
}
],
"slate_date": "2026-09-13"
},
"errors": [],
"league": "nfl",
"request_id": "fnf_nflgd_001",
"retrieved_at": "2026-09-13T14:32:11Z",
"sport": "football",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"date": {
"description": "Sunday of the Game-Day, YYYY-MM-DD",
"type": "string"
},
"team": {
"description": "ESPN team abbrev — restrict to that game",
"type": "string"
},
"tz_offset": {
"default": 0,
"description": "Client tz offset (minutes)",
"type": "integer"
}
},
"required": [
"date"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://fanfare.run/v1/nfl/sunday-gameday" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://fanfare.run/v1/nfl/sunday-gameday");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://fanfare.run/v1/nfl/sunday-gameday")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6042.json, and this resource appears in /discovery/resources and /discovery/search.