# NFL Team Form Matchup Context (Single Game, Pairing)

> NFL Team Form Matchup Context (Single Game, Pairing) is a paid API for AI agents from nfl-form-x402.owenlvll.workers.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns both teams' recent form (up to last 6 games) entering a specific NFL week, side-by-side as home_ and away_ prefixed attributes, for head-to-head matchup analysis.

## Facts

- Endpoint: GET https://nfl-form-x402.owenlvll.workers.dev/pairing/:season/:week/:home/:away
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nfl-team-form-matchup-context-single-game-pairing-5f7e4eb6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1HwBa6dTSzqj4ubNjMqZi

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-team-form-matchup-context-single-game-pairing-5f7e4eb6
```

Example prompt: Pull the pregame form for the Chiefs hosting the Eagles in week 10 of the 2024 NFL season — I want both teams' passing, rushing, red zone, and third-down stats from their last 6 games going into that matchup.

## When to prefer this

Use this endpoint when you need a single game's matchup context — both teams' recent form side-by-side — for a specific home/away pairing in a given season and week. Prefer it over the team-rank or season endpoints when you only need one game's pregame snapshot and want home_ and away_ attributes ready for direct comparison without additional joins or filtering.

## Known failure modes

- 404 returned (no charge) if the teams did not meet as home/away in the specified season/week — e.g. wrong team roles or game didn't occur
- Invalid team abbreviation pattern (must be 2-3 letters) causes request rejection
- Season or week outside 2016-2025 range may yield no data
- Swapping home and away abbreviations returns 404 even if the game occurred with reversed roles

## How this service works

Use when you need matchup context for one NFL game: both teams' form entering that week, to compare an offense with the defense it faces. Home_ and away_ copies of the 44 attributes (passing, rushing, third down, red zone, field position, score state, penalties, touchdowns per drive, pass share), 7 counts and neutral_site. Form is up to each team's last 6 games before that week, never that week's game. 2016-2025. 404, no charge, if the teams did not meet as home/away that week. One JSON row.

## Output

A single JSON row containing 88 form attributes (44 each for home and away teams, prefixed with home_ and away_), covering passing, rushing, third-down conversion, red zone performance, field position, score state, penalties, touchdowns per drive, and pass share — each derived from up to the last 6 games before that week. Also includes 7 count fields and a neutral_site flag. Returns 404 (no charge) if the specified home/away pairing did not occur in that 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",
      "home",
      "away"
     ],
     "properties": {
      "away": {
       "type": "string",
       "pattern": "^[A-Za-z]{2,3}$"
      },
      "home": {
       "type": "string",
       "pattern": "^[A-Za-z]{2,3}$"
      },
      "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-team-form-matchup-context-single-game-pairing-5f7e4eb6/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)
