# Fanfare NFL Teams List

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

Returns all 32 NFL teams with their IDs, names, abbreviations, and cities for use in further NFL queries.

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nfl/teams
- 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/fanfare-api-fly-dev-85a50805
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D8tLTXGLOUjkMHfp0QiEp

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 fanfare-api-fly-dev-85a50805
```

Example prompt: Give me a list of all 32 NFL teams with their IDs and abbreviations so I can look up schedules and standings.

## When to prefer this

Use this endpoint when you need the canonical list of NFL team IDs, names, abbreviations, or cities — especially as a prerequisite step before querying NFL schedules, standings, or stadium-specific data on the fanfare-api platform.

## Known failure modes

- Service unavailable on fly.dev (503) — transient hosting issue, retry
- Unexpected empty response if NFL data source is stale or misconfigured
- Payment failure (402) if x402 micropayment of 0.001 USDC is not completed

## How this service works

Returns NFL team data and metadata for paid access.

## Output

A list of all 32 NFL teams, each with a numeric team ID, full team name, short abbreviation (e.g. DAL, NE), and city. These IDs are used as inputs to other fanfare-api endpoints for schedules and standings.

## 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/fanfare-api-fly-dev-85a50805/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare-api.fly.dev](https://www.zero.xyz/host/fanfare-api.fly.dev/llms.txt)
