# Fanfare NHL Live Game Feed

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

Returns live NHL game data including current period, game clock, play-by-play events, and real-time scoring for a specific game.

## Facts

- Endpoint: GET https://fanfare.run/nhl/game/:game_id
- Price: $0.005000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-398cad15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zy3Swk4vIEHAxIrWai7wS

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-398cad15
```

Example prompt: What's happening right now in the Bruins game — what period are they in, what's the score, and what were the last few plays? The game ID is 2024020500.

## When to prefer this

Use this endpoint when you need live, real-time NHL game data including period, clock, and play-by-play for a specific game already identified by its game_id. Requires a valid game_id obtained from the NHL schedule endpoint. Prefer this over static schedule or standings endpoints when the game is actively in progress.

## Known failure modes

- Invalid or unknown game_id returns an error or empty response
- Game not yet started returns minimal or pre-game data
- Game completed returns final state without live updates
- Network/rate-limit issues may cause delayed or failed responses

## How this service works

Live NHL game feed — period, clock, play-by-play, and real-time scoring. Use game_id from the schedule endpoint.

## Output

Returns live game state including current period, time remaining on the game clock, running score for both teams, and a play-by-play log of recent events such as goals, penalties, and shots on goal.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "game_id": "2024020500"
  }
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "game_id"
     ],
     "properties": {
      "game_id": {
       "type": "string",
       "description": "NHL game ID"
      }
     }
    },
    "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-398cad15/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)
