# NFL Team Form 2016-2025 (Single Team)

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

Returns up to 6-game recent form aggregates (44 offense/defense attributes) for one NFL team entering a specified regular-season week, covering seasons 2016–2025.

## Facts

- Endpoint: GET https://nfl-form-x402.owenlvll.workers.dev/team/:season/:week/:team
- Price: $0.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-team-form-2016-2025-single-team-12300d33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CDexDFyJrZGbhKUOFw7VG

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-2016-2025-single-team-12300d33
```

Example prompt: What does the Chiefs' recent form look like entering week 10 of the 2024 NFL season? I want their passing yards per play, rushing efficiency, sack rate, red-zone TD rate, and the rest of the 44 offensive and defensive attributes from their last 6 games.

## When to prefer this

Use this endpoint when you need a single team's rolling recent-form profile entering a specific week — ideal for pre-game analysis, betting research, or fantasy prep where you want a compact, ready-to-use 44-attribute snapshot. Prefer sibling endpoints when you need both teams in a matchup simultaneously, league-wide comparisons, or a full season of data in one call.

## Known failure modes

- Invalid team abbreviation (not matching ^[A-Za-z]{2,3}$) returns an error
- Season outside 2016–2025 range returns no data or error
- Week number outside valid regular-season range returns no data
- Payment not provided or insufficient USDC returns HTTP 402
- Team had fewer than 6 prior games in the season — returns available games only (could be 0 for week 1)

## How this service works

Use when you need one NFL team's recent form entering a regular-season week: how it played over up to its last 6 games before that week, never that week's game. 44 attributes for offense and defense: passing and rushing yards per play, explosive plays (20+ yard passes, 10+ yard runs), sack, interception and fumble rates, third-down conversion, red-zone TD rate, field position, field goals, time leading or trailing, penalties, touchdowns per drive, pass share. 2016-2025. One JSON row.

## Output

A single JSON object with up to 44 attributes covering the target team's aggregated offensive and defensive performance across up to their 6 most recent games before the specified week, including passing and rushing yards per play, explosive play rates, sack/interception/fumble rates, third-down conversion, red-zone TD rate, field position, field goals, time leading/trailing, penalties, touchdowns per drive, and pass share.

## 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",
      "team"
     ],
     "properties": {
      "team": {
       "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-2016-2025-single-team-12300d33/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)
