# Fanfare NHL Hotel Search

> Fanfare NHL Hotel 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-14).

Search hotels near an NHL team's home arena for a given stay, returning results sorted by price with room type, board type, and availability

## Facts

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

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-6450ba75
```

Example prompt: Find me hotels near the Chicago Blackhawks' arena for 2 guests checking in March 14 and checking out March 16 — I want to see options sorted by price.

## When to prefer this

Use this endpoint when a user wants to find hotel accommodations specifically near an NHL team's home arena, especially when planning travel around an NHL game. Prefer this over generic hotel search APIs when the user's lodging need is anchored to an NHL venue rather than a city or address. Best for travel planning workflows involving NHL games.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty results
- check_in or check_out dates in wrong format (not YYYY-MM-DD) cause a validation error
- check_out date before or same as check_in date causes an error
- No hotel availability for the requested dates returns an empty result set
- Invalid guest count may cause a request error
- Payment failure (insufficient USDC) results in a 402 response

## How this service works

Search hotels near any NHL team's home arena for a given stay, powered by Duffel Stays. Returns results sorted by price with room type, board type, and availability. Params: teamId, check_in, check_out (YYYY-MM-DD), guests.

## Output

A list of hotel options near the specified NHL team's home arena, sorted by price, including room type, board type (e.g. room-only, breakfast included), and availability for the requested stay dates and guest count.

## 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",
      "check_in",
      "check_out"
     ],
     "properties": {
      "guests": {
       "type": "integer",
       "default": 1,
       "description": "Number of adult guests"
      },
      "teamId": {
       "type": "string",
       "description": "NHL team ID"
      },
      "check_in": {
       "type": "string",
       "description": "Check-in date (YYYY-MM-DD)"
      },
      "check_out": {
       "type": "string",
       "description": "Check-out 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-6450ba75/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)
