# NFL Season Form Dataset (2016-2025)

> NFL Season Form Dataset (2016-2025) is a paid API for AI agents from nfl-form-x402.owenlvll.workers.dev, paid per call via x402, $8/call, status unknown (last checked 2026-09-14).

Returns a full regular-season dataset of every NFL matchup from week 5 onward, with both teams' pre-game form (44 attributes, 7 counts) for the requested season year.

## Facts

- Endpoint: GET https://nfl-form-x402.owenlvll.workers.dev/season/:season
- Price: $8/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nfl-season-form-dataset-2016-2025-e488ecf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iQuEGCctVcBlWOqV2WNwq

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-season-form-dataset-2016-2025-e488ecf6
```

Example prompt: Pull the full 2022 NFL season dataset — every regular-season matchup from week 5 onward with both teams' entering form stats — I want all 44 attributes and 7 counts per team per game in one shot.

## When to prefer this

Choose this endpoint when you need an entire NFL season's worth of matchup form data in a single API call, avoiding repeated per-week requests. It is ideal for backfilling datasets, training machine learning models, or building season-long analytics pipelines. Prefer per-week or per-game endpoints if you only need a small slice of data, as the $8 per-call cost is best amortized over bulk season-level use cases.

## Known failure modes

- Invalid season year (outside 2016–2025 range) returns an error or empty response
- Non-numeric season path parameter rejected by pattern validation
- Payment failure via x402 protocol blocks response (requires $8 USDC on Base)
- Network timeout from Cloudflare Worker under heavy load
- Season year provided as future year with no data returns empty or error

## How this service works

Use when you need a whole NFL season of matchups with both teams' form entering each week, in one response: every regular-season week from week 5 (13 or 14 weeks) as /slate rows, 44 attributes and 7 counts per team per game plus neutral_site. For backfilling a season or building a season-long dataset without one call per week; join to game results you hold elsewhere, scores are not included. Form is up to each team's last 6 games before that week, never the week's own game. 2016-2025. JSON.

## Output

A JSON array of slate rows covering every regular-season NFL game from week 5 onward for the requested season. Each row includes 44 form attributes and 7 count fields for both the home and away team (based on each team's last 6 games prior to that week), plus a neutral_site indicator. Scores are not included; the dataset is designed to be joined to game result data held by the caller.

## 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"
     ],
     "properties": {
      "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-season-form-dataset-2016-2025-e488ecf6/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)
