# Fanfare Super Bowl Bundle

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

Returns a one-call bundle of Super Bowl game schedule, SoFi Stadium venue info, local weather, and optional flight/hotel search for travel planning.

## Facts

- Endpoint: GET https://fanfare.run/v1/super-bowl-bundle
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-super-bowl-bundle-e8afe9e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ck2SIwF1-vYMTzeoRXUvn

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-super-bowl-bundle-e8afe9e0
```

Example prompt: I want to go to the Super Bowl game — flying out of JFK with 2 passengers, checking in February 7th and checking out February 10th for 2 guests. Can you pull the full bundle with flights, hotels near SoFi Stadium, and weather?

## When to prefer this

Choose this endpoint when a user wants a single-call Super Bowl travel planning experience combining schedule context, venue details, weather, flights, and hotels — rather than querying each data source separately. Ideal for AI agents building Super Bowl trip itineraries without managing multiple upstream APIs.

## Known failure modes

- Missing or invalid origin IATA code returns no flight results
- Invalid or unrecognized session value disables travel enrichment
- Missing check_in or check_out dates omit hotel results
- Duffel API unavailability causes partial bundle with no flights/hotels
- Open-Meteo outage results in missing weather data
- Payment failure (x402) blocks the entire response

## How this service works

Super Bowl trip planner (SoFi Stadium, Inglewood, CA, nearest airport LAX). One call returns the game schedule + stadium venue intel + Open-Meteo weather + Duffel flights + Duffel Stays hotels. Travel enrichment activates when the game session is selected. Params: session (game), origin, passengers, check_in, check_out, guests.

## Output

A bundled JSON response containing the Super Bowl game schedule entry, SoFi Stadium venue details (location, capacity, etc.), current/forecast weather near the stadium via Open-Meteo, and — when a game session is selected with travel params — one-way economy flight options from the specified origin airport (via Duffel) and hotel listings near SoFi Stadium (via Duffel Stays).

## 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": [],
     "properties": {
      "guests": {
       "type": "integer",
       "default": 1
      },
      "origin": {
       "type": "string",
       "description": "Origin airport IATA for flight search"
      },
      "session": {
       "type": "string",
       "description": "practice|qualifying|race|game or a session id; selecting one enables travel enrichment"
      },
      "check_in": {
       "type": "string",
       "description": "Hotel check-in YYYY-MM-DD"
      },
      "check_out": {
       "type": "string",
       "description": "Hotel check-out YYYY-MM-DD"
      },
      "passengers": {
       "type": "integer",
       "default": 1
      }
     }
    }
   },
   "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-super-bowl-bundle-e8afe9e0/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)
