# Fanfare F1 US Grand Prix Bundle

> Fanfare F1 US 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 a one-call bundle covering the F1 US Grand Prix race-weekend session schedule, Circuit of the Americas venue intel, weather forecast, and optionally flights and hotels when a specific session is selected.

## Facts

- Endpoint: GET https://fanfare.run/v1/us-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-us-grand-prix-bundle-095ca949
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0d3GKmk432f-t_cU657x0

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-us-grand-prix-bundle-095ca949
```

Example prompt: Can you plan my F1 US Grand Prix race weekend trip? I'll be flying from LAX with 2 passengers, want to attend the race session, checking in October 17 and checking out October 20, and need hotels for 2 guests — pull together the schedule, weather, flights, and hotel options all at once.

## When to prefer this

Use this endpoint when a user wants a single comprehensive F1 US Grand Prix race-weekend travel bundle from one API call — combining schedule, venue, weather, flights, and hotels. Prefer this over separate sports, weather, or travel APIs when the user is specifically attending or planning around the Formula 1 United States Grand Prix at Circuit of the Americas in Austin, TX. It is especially valuable when the user needs travel enrichment (flights + hotels) tied to a specific race session.

## Known failure modes

- Invalid session value — must be practice, qualifying, race, or a valid session ID
- Missing or invalid origin IATA code when travel enrichment is requested — no flights returned
- Invalid date format for check_in or check_out — should be YYYY-MM-DD
- No flights available from the specified origin to AUS for the selected dates
- No hotel availability near COTA for the requested dates and guest count
- Payment failure — endpoint requires $0.25 USDC via x402 protocol; unpaid requests are rejected

## How this service works

F1 US Grand Prix race-weekend trip planner at Circuit of the Americas, Austin, TX (nearest airport AUS). 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

Returns a structured bundle containing: (1) the full F1 US Grand Prix session schedule (practice, qualifying, race times and IDs), (2) Circuit of the Americas venue data including GPS coordinates, nearest airport (AUS), and transit tips, (3) Open-Meteo weather forecast for the race weekend. When a specific session is selected, also returns (4) Duffel-powered one-way economy flight results from the specified origin airport to AUS, and (5) Duffel Stays hotel options near COTA for the requested dates and guest count.

## 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-us-grand-prix-bundle-095ca949/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)
