# Fanfare F1 Las Vegas Grand Prix Bundle

> Fanfare F1 Las Vegas Grand Prix 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 the full F1 Las Vegas Grand Prix weekend trip package: session schedule, circuit venue info, weather forecast, flight search results, and hotel options — with travel enrichment when a specific session is selected.

## Facts

- Endpoint: GET https://fanfare.run/v1/las-vegas-grand-prix-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-f1-las-vegas-grand-prix-bundle-c4b2e149
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NOXQ2jJKvdeFzZy7cx4zZ

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-f1-las-vegas-grand-prix-bundle-c4b2e149
```

Example prompt: I want to go to the F1 Las Vegas Grand Prix qualifying session — can you pull up the full trip bundle with flights from Chicago for 2 passengers, checking into a hotel on November 21 and checking out November 23?

## When to prefer this

Use this endpoint when a user wants a one-call solution for planning a trip to the F1 Las Vegas Grand Prix, combining session schedules, venue logistics, weather, flights, and hotels in a single response. Prefer this over generic travel APIs when the user explicitly mentions Formula 1, the Las Vegas Grand Prix, or the Las Vegas Strip Circuit, and needs sports-event-aware travel planning rather than a general hotel or flight search.

## Known failure modes

- Invalid session value returns an error or empty travel enrichment
- Unsupported or misspelled origin IATA code results in no flight results
- Date format errors for check_in/check_out (not YYYY-MM-DD) cause schema validation failure
- No available flights or hotels for the requested dates returns empty arrays
- Missing required parameters (e.g. origin without check_in/check_out) may return partial results without travel enrichment
- Payment failure via x402 protocol results in 402 response and no data returned

## How this service works

F1 Las Vegas Grand Prix race-weekend trip planner at Las Vegas Strip Circuit, Las Vegas, NV (nearest airport LAS). One call returns the session schedule (practice / qualifying / race) + circuit venue intel (coords, airport, transit tips) + Open-Meteo weather + Duffel flights + Duffel Stays hotels. Travel enrichment activates when a single session is selected. Params: session (practice|qualifying|race|<session id>), origin, passengers, check_in, check_out, guests.

## Output

A JSON bundle containing: the F1 Las Vegas Grand Prix session schedule (practice, qualifying, race times), Las Vegas Strip Circuit venue details (GPS coordinates, nearest airport LAS, transit tips), an Open-Meteo weather forecast for race weekend, Duffel flight search results from the specified origin, and Duffel Stays hotel listings for the requested dates and guest count. When a specific session is selected, travel enrichment is activated and flight/hotel results are scoped to that session's timing.

## 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-f1-las-vegas-grand-prix-bundle-c4b2e149/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)
