# Fanfare NFL Sunday Game-Day Bundle

> Fanfare NFL Sunday Game-Day Bundle is a paid API for AI agents from fanfare.run, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns the full NFL Sunday slate in one call — every game with kickoff time, live score, per-team injury reports, consensus Vegas lines (spread, total, moneyline), and venue weather, with dome awareness.

## Facts

- Endpoint: GET https://fanfare.run/v1/nfl/sunday-gameday
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-nfl-sunday-game-day-bundle-69bbe4e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8i5f7bCiL49xeSpYv2OIz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fanfare-nfl-sunday-game-day-bundle-69bbe4e4
```

Example prompt: Pull up the full NFL Sunday slate for December 8th — every game with live scores, injury reports, Vegas lines, and stadium weather. I'm in the Eastern time zone so use -300 for the offset.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-composed NFL Sunday snapshot that combines scheduling, live scores, injury intelligence, betting lines, and weather in a single paid call — avoiding the need to stitch together four or five separate APIs yourself. Ideal for game-day dashboards, fantasy sports assistants, betting research tools, or any agent that needs a full-slate view rather than a single-game lookup.

## Known failure modes

- Non-Sunday date provided — may return empty slate or error if no NFL games scheduled
- Invalid ESPN team abbreviation — returns error or falls back to full slate
- Odds API data unavailable — betting lines may be missing or stale
- NWS/Open-Meteo outage — weather fields may be null or omitted for outdoor venues
- Date too far in future — game data or odds may not yet be populated
- Payment failure (x402) — 402 response if USDC payment not provided

## How this service works

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).

## Output

A JSON bundle covering every NFL game on the specified Sunday, each entry including: kickoff datetime, current score, home and away team info, per-team injury report, consensus Vegas spread/total/moneyline sourced from The Odds API, and venue weather (temperature, wind, conditions) from NWS/Open-Meteo — with dome-aware suppression of weather for indoor stadiums. Optionally filtered to a single team's game.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Sunday of the Game-Day, YYYY-MM-DD"
      },
      "team": {
       "type": "string",
       "description": "ESPN team abbrev — restrict to that game"
      },
      "tz_offset": {
       "type": "integer",
       "default": 0,
       "description": "Client tz offset (minutes)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-nfl-sunday-game-day-bundle-69bbe4e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare.run](https://www.zero.xyz/host/fanfare.run/llms.txt)
