# Fanfare NBA Ticket Listings

> Fanfare NBA 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 an NBA home game via Ticketmaster, including price range, purchase URL, and on-sale status.

## Facts

- Endpoint: GET https://fanfare.run/nba/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-9a092286
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LVmJli_eZl7g22YWj0r63

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-9a092286
```

Example prompt: Can you check what tickets are available for the Lakers home game on March 22, 2025 — I want to know the price range and where to buy them?

## When to prefer this

Use this endpoint when you need real-time, primary-market ticket availability and pricing for a specific NBA home game from Ticketmaster. Prefer this over secondary market or generic search when you want official listings with direct purchase links and on-sale status for a known team and date.

## Known failure modes

- Invalid or unrecognized NBA team ID returns an error or empty result
- Date formatted incorrectly (not YYYY-MM-DD) may cause a validation error
- No game scheduled for the given team on the specified date returns empty listings
- Ticketmaster has no tickets on sale yet for a future game returns off-sale status
- Payment of 0.001 USDC not processed correctly results in 402 error

## How this service works

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

## Output

Returns live Ticketmaster primary-market ticket listings for the specified NBA home game, including the ticket price range (min/max), a direct purchase URL, and the current on-sale status.

## 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": "NBA 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-9a092286/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)
