# Fanfare Game Night Bundle

> Fanfare Game Night Bundle 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 single bundled response with game info, recommended arrival time, Ticketmaster ticket listings, current venue weather, and top 3 nearby restaurants for a given team and date.

## Facts

- Endpoint: GET https://fanfare.run/v1/game-night-bundle
- 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-36e49db2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G1RswtBOOREJ3JG8RAi5N

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-36e49db2
```

Example prompt: Put together a full game night plan for the Lakers NBA game on December 14, 2025 — I want tickets, weather at the arena, arrival time, and nearby restaurants all at once.

## When to prefer this

Use this endpoint when you need a complete, pre-game evening plan in a single call and want to avoid orchestrating multiple separate API calls for tickets, weather, and dining. Ideal when the user asks to 'plan a game night' with minimal latency and a unified response structure across MLB, NBA, WNBA, NHL, and NFL.

## Known failure modes

- No game found for team on given date — returns empty or 404
- Invalid sport code or team_id — returns 400 validation error
- Ticketmaster data unavailable for this game — ticket listings may be empty
- Weather service temporarily unavailable — weather field may be null or missing
- Restaurant data sparse in that area — may return fewer than 3 results
- Date in offseason — no game scheduled, empty bundle returned
- Payment not fulfilled — 402 response requiring x402 payment of $0.05 USDC

## How this service works

Single-game evening plan bundle. Returns game info, recommended arrival time, Ticketmaster ticket listings, current weather at the venue, and top 3 nearby restaurants — all in one call. Covers MLB, NBA, WNBA, NHL, and NFL. Params: sport (mlb|nba|wnba|nhl|nfl), team_id, date (YYYY-MM-DD).

## Output

A bundled JSON object containing game details (teams, time, venue), a recommended arrival time, Ticketmaster ticket listings for the game, current weather conditions at the venue, and the top 3 nearby restaurants — all from a single call.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "date": "2025-12-14",
   "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",
      "date"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      },
      "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-36e49db2/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)
