# Fanfare NFL Stadium Hotel Search

> Fanfare NFL Stadium 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 and return hotels near any NFL team's home stadium for specified dates, sorted by price with room and board details

## Facts

- Endpoint: GET https://fanfare.run/nfl/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-7d13c143
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__kM67TrJD0UaM9LoH2sob

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

Example prompt: Find me hotels near the Kansas City Chiefs' stadium for 2 adults, checking in September 5th and checking out September 8th.

## When to prefer this

Use this endpoint when a user wants to find lodging specifically near an NFL stadium — ideal for game-day travel planning, road trip fans, or anyone attending an NFL event who needs hotel options sorted by price with availability details. Prefer over generic hotel search APIs when the context is NFL team-centric travel.

## Known failure modes

- Invalid or unrecognized teamId returns an error or empty results
- Invalid date format (not YYYY-MM-DD) causes a validation error
- Check-out date before or equal to check-in date returns an error
- No availability for the given dates returns an empty results list
- Service downtime from Duffel Stays upstream returns a 500 or timeout

## How this service works

Search hotels near any NFL team's home stadium 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 hotels near the specified NFL team's home stadium, sorted by price, including room type, board type, availability, and pricing details for the requested 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": "NFL 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-7d13c143/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)
