# Fanfare NHL Flight Search

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

Search one-way economy flights to the nearest airport for any NHL team's home arena, returning offers sorted by price with carrier, times, and expiry.

## Facts

- Endpoint: GET https://fanfare.run/nhl/flights
- Price: $0.250000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-d687fd1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sg9u3UaIdJh8mjb3oDT7i

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

Example prompt: Find me the cheapest one-way economy flights to see the Boston Bruins play on March 15th — I'm flying out of JFK, just 1 passenger.

## When to prefer this

Use this endpoint when a user wants to find economy flights to attend an NHL game at a specific team's home arena, especially when they know the team ID, travel date, and origin airport. Prefer over generic flight search when the destination is defined by an NHL team rather than a city or airport.

## Known failure modes

- Invalid NHL team ID returns error or empty results
- Invalid IATA origin code causes lookup failure
- Date in the past or unavailable returns no offers
- No flights available on the requested date returns empty offer list
- Malformed date format returns validation error

## How this service works

Search one-way economy flights to the nearest airport for any NHL team's home arena, powered by Duffel. Returns offers sorted by price with carrier, times, and expiry. Params: teamId, date (YYYY-MM-DD), origin (IATA code), passengers.

## Output

A list of one-way economy flight offers sorted by price, each including carrier name, departure and arrival times, total price, and offer expiry timestamp, for the airport nearest the specified NHL team's home arena.

## 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",
      "origin"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Departure date (YYYY-MM-DD)"
      },
      "origin": {
       "type": "string",
       "description": "Origin airport IATA code"
      },
      "teamId": {
       "type": "string",
       "description": "NHL team ID"
      },
      "passengers": {
       "type": "integer",
       "default": 1,
       "description": "Number of adult passengers"
      }
     }
    }
   },
   "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-d687fd1e/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)
