# Fanfare WNBA Flight Search

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

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

## Facts

- Endpoint: GET https://fanfare.run/wnba/flights
- 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-d807a01e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xm4R7Tspg8iG8idxWaKqw

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

Example prompt: Find me one-way economy flights from LAX to the Las Vegas Aces' arena on July 15 for 2 passengers, sorted by price.

## When to prefer this

Use this endpoint when a user wants to fly to attend a WNBA game and needs economy flight options to the arena's nearest airport. It uniquely maps WNBA team IDs to airport proximity, saving the user from looking up which airport to fly into. Prefer this over generic flight search when WNBA team context is already known.

## Known failure modes

- Invalid or unknown WNBA team ID returns an error or empty results
- Invalid IATA origin code causes a bad request error
- Date in wrong format (not YYYY-MM-DD) causes a validation error
- No flights available for the requested route or date returns an empty offers list
- Offer expiry exceeded before booking causes stale data issues

## How this service works

Search one-way economy flights to the nearest airport for any WNBA 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 flight offers sorted by price, each with carrier name, departure and arrival times, total price, and offer expiry timestamp, routed to the nearest airport to the specified WNBA 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": "WNBA 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-d807a01e/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)
