# Fanfare WNBA Hotel Search

> Fanfare WNBA 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-15).

Search hotels near a WNBA team's home arena for a given stay, returning results sorted by price with room type, board type, and availability via Duffel Stays.

## Facts

- Endpoint: GET https://fanfare.run/wnba/hotels
- 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-141f9707
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mAMA6bLoVehmIEBTTPjW6

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-141f9707
```

Example prompt: Can you find hotels near the Seattle Storm's arena for 2 guests checking in June 14 and checking out June 16?

## When to prefer this

Use this endpoint when a user wants to find lodging specifically near a WNBA team's home arena for a given stay period. It is purpose-built for WNBA fan travel planning and aggregates hotel results sorted by price via Duffel Stays. Prefer this over generic hotel search APIs when the user's context is WNBA game attendance and a team identifier is known.

## 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 causes an error
- No availability near the arena for the requested dates returns empty results
- Duffel Stays upstream outage causes service unavailability

## How this service works

Search hotels near any WNBA 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 hotels near the specified WNBA team's home arena, sorted by price, including room type, board type (e.g. room-only, breakfast included), availability status, and pricing details 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": "WNBA 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-141f9707/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)
