# NFL Slate Form – Full Week Matchups with Team Form (2016-2025)

> NFL Slate Form – Full Week Matchups with Team Form (2016-2025) is a paid API for AI agents from nfl-form-x402.owenlvll.workers.dev, paid per call via x402, $1/call, status unknown (last checked 2026-09-16).

Returns every game in one NFL regular-season week, each enriched with both teams' recent form (up to last 6 games, 44 attributes + 7 counts per team) in a single call.

## Facts

- Endpoint: GET https://nfl-form-x402.owenlvll.workers.dev/slate/:season/:week
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nfl-slate-form-full-week-matchups-with-team-form-2016-2025-7cc52f6c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2iupn1Urj_1jVj9hbcp-y

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 nfl-slate-form-full-week-matchups-with-team-form-2016-2025-7cc52f6c
```

Example prompt: Pull the full slate of NFL games for week 10 of the 2024 season, including both teams' recent form going into each matchup.

## When to prefer this

Use this endpoint when you need an entire week's worth of NFL matchups enriched with pre-game team form in a single API call, rather than making one pairing call per game. Ideal for slate-level analysis, batch model training, or weekly preview dashboards where you need all 13-16 games at once. Prefer over the single-game pairing endpoint when processing a full week.

## Known failure modes

- Season outside 2016-2025 range returns error or empty result
- Week number below 5 or above 17/18 returns error or empty result
- Non-numeric season or week path params may return 400 or validation error
- Payment failure (x402) if USDC not provided returns 402 Payment Required
- Cloudflare Worker timeout for unexpected load

## How this service works

Use when you need every NFL game of one regular-season week in a single call, each with both teams' form entering that week: the same home_/away_ rows /pairing returns (44 attributes and 7 counts per team, neutral_site per game) for all 13 to 16 games. Builds a full week of matchups at once instead of one pairing call per game. Form is up to each team's last 6 games before that week, never that week's own game. Seasons 2016-2025, weeks 5 to 17 or 18. JSON object with a games array.

## Output

A JSON object containing a 'games' array. Each game entry includes identifying info for the matchup (home team, away team, neutral site flag) plus 44 form attributes and 7 counts for both the home and away team, representing each team's performance across up to their last 6 games before that week. Covers 13-16 games per week.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "season",
      "week"
     ],
     "properties": {
      "week": {
       "type": "string",
       "pattern": "^[0-9]+$"
      },
      "season": {
       "type": "string",
       "pattern": "^[0-9]+$"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/nfl-slate-form-full-week-matchups-with-team-form-2016-2025-7cc52f6c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nfl-form-x402.owenlvll.workers.dev](https://www.zero.xyz/host/nfl-form-x402.owenlvll.workers.dev/llms.txt)
