# Fanfare Rivalry Bundle

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

Returns the next matchup between two rival teams plus both teams' standings, Ticketmaster tickets at the home venue, and live weather — all in one call for MLB, NBA, WNBA, NHL, or NFL.

## Facts

- Endpoint: GET https://fanfare.run/v1/rivalry-bundle
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-rivalry-bundle-b2172947
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_79oT9KDy78-vNTu1jCXlr

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-rivalry-bundle-b2172947
```

Example prompt: Pull up the full rivalry bundle for the next NBA game between the Lakers (team_id: 1610612747) and the Celtics (opponent_id: 1610612738) — I want the matchup info, current standings for both teams, available Ticketmaster tickets at the home venue, and the live weather there.

## When to prefer this

Choose this endpoint when you need a complete rivalry-game snapshot in a single call rather than stitching together four separate requests for schedule, standings, tickets, and weather. Ideal for fan-facing agents that want to surface everything needed for game attendance planning without chaining multiple API calls. Best when the user explicitly cares about two specific rival teams across MLB, NBA, WNBA, NHL, or NFL.

## Known failure modes

- No game found in the next 7–14 days between the two teams — returns empty or null matchup
- Invalid sport code or unrecognized team_id/opponent_id — returns 400 or error message
- Ticketmaster data unavailable for the venue — ticket listing may be empty
- Weather service temporarily unavailable — weather field may be null or absent
- Teams are in the same division and have no upcoming matchup in the scan window

## How this service works

Rivalry bundle: next matchup between two teams + current standings for both + Ticketmaster tickets at the home venue + live weather — all in one call. Scans the next 7–14 days for the first game between team_id and opponent_id. Works for MLB, NBA, WNBA, NHL, NFL. Params: sport, team_id, opponent_id.

## Output

A combined payload containing: the next scheduled game between the two teams (date, time, venue), current standings for both teams in their respective conferences/divisions, available Ticketmaster ticket listings at the home arena, and live weather conditions at the venue location.

## 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",
      "opponent_id"
     ],
     "properties": {
      "sport": {
       "type": "string",
       "description": "Sport code: mlb, nba, wnba, nhl, or nfl"
      },
      "team_id": {
       "type": "string",
       "description": "Your team's ID (sport-specific)"
      },
      "opponent_id": {
       "type": "string",
       "description": "Opponent team's 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-rivalry-bundle-b2172947/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)
