# NFL Team Form 2016-2025 – Single Team Weekly Rank

> NFL Team Form 2016-2025 – Single Team Weekly Rank 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 44 offensive and defensive performance metrics with week-relative and pooled-historical percentiles for one NFL team entering a given week (2016–2025).

## Facts

- Endpoint: GET https://nfl-form-x402.owenlvll.workers.dev/team-rank/:season/:week/:team
- 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-2016-2025-single-team-weekly-rank-f147d1e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7hU_eNZnwmrbOSf7i4UtD

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-weekly-rank-f147d1e2
```

Example prompt: What does the Chiefs pass defense look like entering week 10 of the 2024 season — are they near the top or bottom of the league, and how do they compare to all NFL teams since 2016?

## When to prefer this

Use this endpoint when you need the complete statistical profile and league-relative rankings for a single NFL team entering a specific week — especially when you want both within-week context (how they compare to this week's 32 teams) and long-run historical context (where they stand across 4,320 team-weeks since 2016). Prefer this over the matchup endpoint when you only need one team's form, not a head-to-head comparison.

## Known failure modes

- Invalid team abbreviation (not 2-3 alpha characters) returns a 4xx error
- Season year outside 2016–2025 range may return empty or error response
- Week number 0 or beyond the final week of a season may return no data
- Payment not completed via x402 protocol returns 402 Payment Required
- Network timeout from Cloudflare Worker under high load

## How this service works

Use when you need where one NFL team stands relative to the league entering a week. Each of the 44 attributes (passing, rushing, third down, red zone, penalties, touchdowns per drive) carries its value and two percentiles: pct_week against the 32 teams that week, pct_pooled against all 4,320 team-weeks 2016-2025. 1.0 is best for offense and defense; two style measures (time tied, pass share) stay raw. Answers whether a team's pass defense is near the top or bottom of the league. One JSON row.

## Output

A single JSON object containing 44 team performance attributes (passing, rushing, third-down, red zone, penalties, TDs per drive, pass share, time tied), each with its raw value and two percentile scores: pct_week (rank among the 32 teams in that specific week) and pct_pooled (rank among all 4,320 team-weeks from 2016–2025). Percentile of 1.0 means best in class for offense/defense metrics.

## 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-weekly-rank-f147d1e2/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)
