# Fanfare NHL Schedule

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

Returns NHL game schedule for any date, including matchups, period-by-period scores, and game status.

## Facts

- Endpoint: GET https://fanfare.run/nhl/schedule
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-run-286c50eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hzR_RGgqc2h1ZbWVGFH2b

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-286c50eb
```

Example prompt: What NHL games are happening on March 15, 2025, and what are the scores by period?

## When to prefer this

Use this endpoint when you need NHL-specific game data including period-by-period scoring breakdowns. Prefer this over generic sports data APIs when the user is asking specifically about NHL matchups, scores, or game status for a particular date.

## Known failure modes

- No games found for the given date — off-season or no scheduled games
- Invalid date format — must be YYYY-MM-DD
- Network or upstream data source unavailable, returning 5xx error
- Date in far future may return empty or placeholder schedule data

## How this service works

NHL game schedule for any date — matchups, scores by period, and game status. Defaults to today's games if no date provided.

## Output

A list of NHL games for the requested date (or today if no date given), each including the two competing teams, current or final score broken down by period, and the game status (e.g. scheduled, in progress, final).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "date": "2025-03-15"
  }
 }
}
```

## 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": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      }
     }
    }
   },
   "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-286c50eb/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)
