# Fanfare F1 Mexico City Grand Prix Bundle

> Fanfare F1 Mexico City 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 F1 Mexico City Grand Prix session schedule, circuit venue intel, weather forecast, flight options, and hotel listings in a single call — with travel enrichment when a specific session is selected.

## Facts

- Endpoint: GET https://fanfare.run/v1/mexico-city-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-mexico-city-grand-prix-bundle-4a947623
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ro7d1PMmqPSqKaZJx7-d7

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-mexico-city-grand-prix-bundle-4a947623
```

Example prompt: Can you plan my trip to the F1 Mexico City Grand Prix race session — I'm flying from LAX with 2 passengers, checking in October 24 and checking out October 27, for 2 guests?

## When to prefer this

Use this endpoint when a user wants a one-stop trip-planning bundle specifically for the F1 Mexico City Grand Prix at Autódromo Hermanos Rodríguez — combining schedule, venue, weather, flights, and hotels in a single call. Prefer this over separate flight, hotel, or weather APIs when the sports context (F1 Mexico) is the primary trigger and the user wants aggregated race-weekend intelligence rather than standalone travel data.

## Known failure modes

- Invalid session value (not practice|qualifying|race or a valid session id) returns an error
- Invalid IATA origin code produces no flight results or an error
- Dates outside the race weekend window may return no hotel or flight availability
- Missing required travel parameters (origin, check_in, check_out) suppresses flight/hotel enrichment
- Duffel or Open-Meteo downstream outages may cause partial results

## How this service works

F1 Mexico City Grand Prix race-weekend trip planner at Autódromo Hermanos Rodríguez, Mexico City (nearest airport MEX). 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 session schedule (practice, qualifying, race times), Autódromo Hermanos Rodríguez venue details (coordinates, nearest airport MEX, 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 given dates — with full travel enrichment when a specific session is selected.

## 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-mexico-city-grand-prix-bundle-4a947623/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)
