# Fanfare NFL Weekly Schedule

> Fanfare NFL Weekly Schedule is a paid API for AI agents from fanfare.run, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns all NFL game matchups, kickoff times, and venues for a specific week in a given season.

## Facts

- Endpoint: GET https://fanfare.run/nfl/schedule
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-run-eded02bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K6c5NHBHtTbpz6-xsEmWL

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-run-eded02bb
```

Example prompt: Pull up the full NFL schedule for week 9 of the 2024 season — I want to see all the matchups, kickoff times, and where each game is being played.

## When to prefer this

Use this endpoint when you need a complete weekly view of all NFL games — matchups, times, and locations — for a specific season week. Ideal for fans planning which games to watch, travel planning around specific games, or building sports dashboards. Prefer this over team-specific endpoints when you need all games in a week rather than a single team's schedule.

## Known failure modes

- Invalid week number outside 1-18 range returns an error
- Future season years with no data yet may return empty results
- Invalid or non-integer year/week values cause validation errors
- Network or upstream data source unavailability returns 5xx errors

## How this service works

NFL weekly schedule by season year and week number (1-18) — all matchups, kickoff times, and venues for that week.

## Output

A list of all NFL games for the specified week and season year, including team matchups, scheduled kickoff times, and venue/stadium information for each game.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "week": 9,
   "year": 2024
  }
 }
}
```

## 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": [
      "year",
      "week"
     ],
     "properties": {
      "week": {
       "type": "integer",
       "description": "Week number (1-18)"
      },
      "year": {
       "type": "integer",
       "description": "Season year"
      }
     }
    }
   },
   "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-run-eded02bb/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)
