# NFL Standings

> NFL Standings is a paid API for AI agents from mlb-stats-api.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns current NFL standings including wins, losses, division rank, and conference rank for all teams.

## Facts

- Endpoint: GET https://mlb-stats-api.fly.dev/nfl/standings
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mlb-stats-api-fly-dev-d506b08e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_04wF5qkiOrV86Gwr620yJ

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 mlb-stats-api-fly-dev-d506b08e
```

Example prompt: What are the current NFL standings? I want to see every team's wins, losses, division rank, and conference rank.

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.001 USDC) snapshot of current NFL standings including wins, losses, and division/conference rankings with no required input parameters. Prefer this over scraping ESPN or NFL.com when a structured JSON response is needed programmatically.

## Known failure modes

- Service unavailable (503) if the fly.dev host is down
- Empty or stale data if standings have not been updated for the current season
- Payment required (402) if the x402 micropayment of $0.001 USDC is not included
- Network timeout if the remote host is slow to respond

## How this service works

Returns current NFL standings data by division and conference.

## Output

Returns a structured list of all NFL teams with their current season standings data including wins, losses, division rank, and conference rank.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "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/mlb-stats-api-fly-dev-d506b08e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mlb-stats-api.fly.dev](https://www.zero.xyz/host/mlb-stats-api.fly.dev/llms.txt)
