# Fanfare MLB Ticket Listings

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

## Facts

- Endpoint: GET https://fanfare.run/mlb/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-b471ed3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_REWMO8guLzSOP2JbXi9PR

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

Example prompt: Can you check what tickets are available on the primary market for the Chicago Cubs home game on July 14, 2025 — team ID 112 — and tell me the price range and where to buy them?

## When to prefer this

Use this endpoint when you need live, primary-market MLB ticket availability and pricing for a specific home game date. Prefer this over secondary market or general sports APIs when you need official Ticketmaster listings with direct purchase links and on-sale status.

## Known failure modes

- No tickets found if the team has no home game on the specified date
- Invalid teamId returns an error or empty result
- Date format not matching YYYY-MM-DD causes a validation error
- Tickets sold out or event not yet on sale returns empty or limited listings
- Ticketmaster API outage may result in stale or unavailable data

## How this service works

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

## Output

Returns live Ticketmaster primary-market ticket listings for the specified MLB home game, including the event name, minimum and maximum ticket price, a direct purchase URL, and whether tickets are currently on sale.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "date": "2025-06-15",
   "teamId": "145"
  }
 }
}
```

## 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": "MLB Stats API 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-b471ed3e/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)
