# Fanfare NHL Ticket Listings

> Fanfare NHL Ticket Listings 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 live primary-market ticket listings for an NHL home game via Ticketmaster, including price range, purchase URL, and on-sale status.

## Facts

- Endpoint: GET https://fanfare.run/nhl/tickets
- 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-e13d9a5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-A6I4p_HsEQCxjPDWuyI5

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

Example prompt: Can you check if there are tickets available for the Boston Bruins home game on 2025-02-15 and tell me the price range and where to buy them?

## When to prefer this

Use this endpoint when you need real-time, official primary-market ticket availability and pricing for a specific NHL home game — especially when accuracy of pricing and on-sale status matters. Prefer this over secondary-market sources when the user wants to buy direct from Ticketmaster.

## Known failure modes

- Invalid or unrecognized NHL team ID returns an error or empty result
- Date not matching any scheduled home game returns no listings
- Game tickets not yet on sale returns off-sale status
- Ticketmaster API unavailable causes upstream failure
- Malformed date format (not YYYY-MM-DD) causes validation error

## How this service works

Live primary-market ticket listings for an NHL home game via Ticketmaster — price range, purchase URL, and on-sale status.

## Output

Returns live Ticketmaster primary-market ticket data for the specified NHL home game, including event name, minimum and maximum ticket prices, purchase URL, and current on-sale status.

## Example request

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

## 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",
     "required": [
      "teamId",
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      },
      "teamId": {
       "type": "string",
       "description": "NHL team ID"
      }
     }
    }
   },
   "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-e13d9a5b/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)
