# Fanfare WNBA Ticket Listings

> Fanfare WNBA Ticket Listings is a paid API for AI agents from fanfare.run, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns live primary-market ticket listings for a WNBA home game via Ticketmaster, including price range, purchase URL, and on-sale status.

## Facts

- Endpoint: GET https://fanfare.run/wnba/tickets
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-e64905c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3ibiOo0LjG5TCVR5TVr8e

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

Example prompt: What are the Ticketmaster ticket prices and purchase link for the New York Liberty home game on July 14, 2025? The Liberty's WNBA team ID is 'ny-liberty'.

## When to prefer this

Use this endpoint when you need real-time primary-market ticket pricing and purchase links specifically for WNBA home games via Ticketmaster. Prefer this over general web search when you need structured, machine-readable ticket data including price range and direct buy URL for a known team and date.

## Known failure modes

- No tickets found if teamId is invalid or game does not exist on that date
- Empty or null result if the game is in the offseason or not yet on sale
- Ticketmaster API unavailability causing upstream errors
- Date format mismatch if not provided as YYYY-MM-DD
- Game may be away game — endpoint covers home games only

## How this service works

Live primary-market ticket listings for a WNBA home game via Ticketmaster — price range, purchase URL, and on-sale status.

## Output

Returns live ticket listing data from Ticketmaster for the specified WNBA home game, including the event name, minimum and maximum ticket prices, a direct purchase URL, and whether tickets are currently on sale.

## 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"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      },
      "teamId": {
       "type": "string",
       "description": "WNBA team ID"
      }
     }
    }
   },
   "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-e64905c7/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)
