# Fanfare Playoff Tracker

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

Returns a team's next 7–14 days of games with each game flagged as 'regular' or 'playoff', plus Ticketmaster ticket links for the next home game, across MLB, NBA, WNBA, NHL, and NFL.

## Facts

- Endpoint: GET https://fanfare.run/v1/playoff-tracker
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-355f4569
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_63Gi7On0ktqd95yvv67vx

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-355f4569
```

Example prompt: Can you show me the Lakers' upcoming games for the next two weeks on Fanfare and tell me which ones are playoff games, and also grab Ticketmaster ticket links for their next home game? The sport is NBA and the team ID is lakers.

## When to prefer this

Use this endpoint when you need to know if upcoming games are regular season or playoff games for a specific team, or when you want to surface ticket purchase links for the team's next home game. Ideal for fan-facing agents that need schedule context plus immediate ticket access across all five major North American sports leagues.

## Known failure modes

- Invalid sport code returns an error or empty result
- Unknown team_id returns no data
- Team is in offseason — may return empty or limited schedule
- Ticketmaster tickets unavailable for next home game — ticket link may be null or absent
- Network or upstream data delay causing stale or missing schedule data

## How this service works

Team's next 7–14 days of games with each game flagged as 'regular' or 'playoff', plus Ticketmaster tickets for the next home game. Works year-round for MLB, NBA, WNBA, NHL, and NFL. Params: sport (mlb|nba|wnba|nhl|nfl), team_id.

## Output

A list of the team's next 7–14 scheduled games, each labeled as 'regular' or 'playoff', plus a Ticketmaster ticket link for the next home game.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "sport": "nba",
   "team_id": "lakers"
  }
 }
}
```

## 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": [
      "sport",
      "team_id"
     ],
     "properties": {
      "sport": {
       "type": "string",
       "description": "Sport code: mlb, nba, wnba, nhl, or nfl"
      },
      "team_id": {
       "type": "string",
       "description": "Team ID (sport-specific)"
      }
     }
    }
   },
   "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-355f4569/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)
