# Fanfare NHL Teams

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

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

## Facts

- Endpoint: GET https://fanfare.run/nhl/teams
- Price: $0.001000/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-7fe9e78c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OlL4K6cCWUr75vdClAWvl

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

Example prompt: Can you pull up all the NHL teams with their IDs and abbreviations so I can figure out which team ID to use for querying schedules?

## When to prefer this

Use this endpoint when you need to discover or confirm NHL team IDs or abbreviations before making downstream calls to schedule or standings endpoints. It is the authoritative reference for NHL team metadata on the Fanfare platform.

## Known failure modes

- Service unavailable returning 5xx error
- Payment required if x402 credit not provided
- Empty or malformed response if upstream data source is down

## 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, city name, team name, and abbreviation — suitable for use as input to schedule and standings endpoints.

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