# Fanfare NBA Hotel Search

> Fanfare NBA 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 any NBA team's home arena for a specified stay, returning results sorted by price with room type, board type, and availability via Duffel Stays.

## Facts

- Endpoint: GET https://fanfare.run/nba/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-c2446b12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FikC0zM-0sK4o6tKvFwf-

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

Example prompt: Find me hotels near the Golden State Warriors' arena for 2 guests, checking in June 10 and checking out June 12.

## When to prefer this

Use this endpoint when a user wants to find hotel accommodations specifically near an NBA team's home arena, leveraging Duffel Stays inventory sorted by price. Prefer this over general hotel search APIs when the location anchor is an NBA team rather than a city or address.

## Known failure modes

- Invalid or unknown teamId returns an error or empty results
- Check-in date after check-out date causes a validation error
- Past or too-far-future dates may return no availability
- Non-integer or missing guests parameter may cause a bad request error
- Network or Duffel Stays API downtime may result in a 500 or timeout

## How this service works

Search hotels near any NBA 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 available hotels near the specified NBA team's home arena, sorted by price, with details including room type, board type, 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": "NBA 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-c2446b12/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)
