# Fanfare Away-Game Trip Bundle

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

Returns a full away-game travel package in one call: game info, arrival tips, Ticketmaster tickets, weather, top 3 nearby restaurants, one-way Duffel flights, and hotel search near the stadium.

## Facts

- Endpoint: GET https://fanfare.run/v1/game-trip-bundle
- Price: $0.500000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-299ca08b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HzJY6vxxCW56moUreMoV-

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-299ca08b
```

Example prompt: Plan my away-game trip to see the Lakers play on March 15 — I'm flying from JFK, checking in March 14 and checking out March 16, just 1 passenger and 1 guest, and I need flights, a hotel near the arena, tickets, weather, and restaurant recommendations all at once.

## When to prefer this

Use this endpoint when you need a complete away-game travel package in a single API call rather than orchestrating multiple separate lookups for flights, hotels, tickets, weather, and dining. Ideal for AI agents building sports travel itineraries without chaining many specialized endpoints. Best when the user wants a one-stop bundle across MLB, NBA, WNBA, NHL, or NFL.

## Known failure modes

- Invalid or unsupported sport code returns an error
- Unknown team_id for the given sport returns no results
- No flights found from origin to stadium city for the date
- No hotel availability for check-in/check-out dates
- Game not scheduled on specified date returns empty game info
- Invalid IATA origin code causes flight search failure
- Ticketmaster has no listings for the event
- Date format not YYYY-MM-DD causes validation error

## How this service works

Full away-game trip bundle. Returns game info + arrival tip + Ticketmaster tickets + weather + top 3 nearby restaurants + Duffel one-way flights from origin + hotel search near the stadium — all in one call. Covers MLB, NBA, WNBA, NHL, and NFL. Params: sport, team_id, date (YYYY-MM-DD), origin (IATA), check_in, check_out, passengers (default 1), guests (default 1).

## Output

A bundled JSON response containing: game details and arrival tips, available Ticketmaster ticket listings, current weather near the stadium, top 3 nearby restaurants, one-way economy flight options from the origin airport via Duffel, and hotel search results near the stadium for the specified dates.

## 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",
      "origin",
      "check_in",
      "check_out"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      },
      "sport": {
       "type": "string",
       "description": "Sport code: mlb, nba, wnba, nhl, or nfl"
      },
      "guests": {
       "type": "integer",
       "default": 1,
       "description": "Number of hotel guests"
      },
      "origin": {
       "type": "string",
       "description": "Origin airport IATA code"
      },
      "team_id": {
       "type": "string",
       "description": "Team ID (sport-specific)"
      },
      "check_in": {
       "type": "string",
       "description": "Hotel check-in date (YYYY-MM-DD)"
      },
      "check_out": {
       "type": "string",
       "description": "Hotel check-out date (YYYY-MM-DD)"
      },
      "passengers": {
       "type": "integer",
       "default": 1,
       "description": "Number of adult passengers"
      }
     }
    }
   },
   "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-299ca08b/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)
