# Fanfare NFL Teams

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

Returns all 32 NFL teams with their ID, name, abbreviation, and city for use in schedule and standings queries.

## Facts

- Endpoint: GET https://fanfare.run/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-run-0a70782d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9uZ0T1KlpbunaQy6r7SHM

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-run-0a70782d
```

Example prompt: Can you give me a list of all 32 NFL teams with their IDs and abbreviations so I can look up schedules?

## When to prefer this

Use this endpoint when you need to discover or enumerate NFL team IDs, abbreviations, or city names — especially as a prerequisite step before querying NFL schedules or standings by team ID.

## Known failure modes

- Service unavailable returns 5xx error
- Payment not accepted returns 402
- Rate limiting returns 429

## How this service works

All 32 NFL teams with ID, name, abbreviation, and city. Use team IDs to query schedules and standings.

## Output

A list of all 32 NFL teams, each with a unique team ID, full team name, city, and abbreviation — suitable for passing team IDs into schedule or standings endpoints.

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