# Fanfare NHL Teams List

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

Returns all NHL teams with their IDs, abbreviations, and city names for use in schedule and standings queries.

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/nhl/teams
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-api-fly-dev-ee1ca06c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Etm12BSTvSobNGUG13N7

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-ee1ca06c
```

Example prompt: Give me a full list of all NHL teams with their IDs and abbreviations so I can look up the schedule for the Toronto Maple Leafs.

## When to prefer this

Use this endpoint when you need a canonical reference list of NHL teams and their IDs before querying schedules, standings, or other team-specific NHL endpoints. Prefer this over hardcoding team IDs since it reflects the current active franchise list.

## Known failure modes

- Service unavailable (5xx) if the fly.dev host is down or cold-starting
- Payment required (402) if x402 payment header is missing or invalid
- Empty or malformed JSON if the upstream NHL data source is unavailable

## How this service works

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

## Output

A list of all NHL teams, each with a numeric team ID, short abbreviation (e.g. 'TOR', 'NYR'), and the city or market name — used as reference data to feed into other NHL endpoints like schedules and standings.

## 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-ee1ca06c/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)
