# NFL Weekly Schedule

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

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

## Facts

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

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-api-fly-dev-45719704
```

Example prompt: Can you pull up the full NFL schedule for week 7 of the 2024 season — all the matchups, kickoff times, and where they're being played?

## When to prefer this

Use this endpoint when you need a complete view of all NFL games for a specific week in a given season, including kickoff times and venues. Ideal for building game-day planners, fantasy football tools, sports calendars, or travel planning around NFL events.

## Known failure modes

- Invalid week number (must be 1-18) returns an error
- Invalid or future season year with no data returns empty or error
- Missing required query parameters (year or week) returns a 400 error
- Network or server unavailability returns a 5xx error

## 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, including matchup details (home and away teams), scheduled kickoff times, and stadium/venue information.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "week": 7,
   "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-api-fly-dev-45719704/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare-api.fly.dev](https://www.zero.xyz/host/fanfare-api.fly.dev/llms.txt)
