F1 US Grand Prix race-weekend trip planner at Circuit of the Americas, Austin, TX (nearest
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.
250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated
Provider
fanfare.run · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x41AdeE1eBA2c276bE5e8Cabe0CE523e4dd792170",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "sports",
"info": {
"input": {
"method": "GET",
"queryParams": {
"check_in": "2026-10-25",
"check_out": "2026-10-25",
"origin": "JFK",
"session": "race"
},
"type": "http"
},
"output": {
"example": {
"data": {
"event": "US Grand Prix Bundle",
"flights": null,
"hotels": null,
"league": "f1",
"season": "2026",
"selected_session": null,
"sessions": [
{
"date_utc": "2026-10-23T19:00:00Z",
"id": "fp1",
"name": "Free Practice 1",
"type": "practice"
},
{
"date_utc": "2026-10-23T22:00:00Z",
"id": "fp2",
"name": "Free Practice 2",
"type": "practice"
},
{
"date_utc": "2026-10-24T19:00:00Z",
"id": "fp3",
"name": "Free Practice 3",
"type": "practice"
},
{
"date_utc": "2026-10-24T22:00:00Z",
"id": "qualifying",
"name": "Qualifying",
"type": "qualifying"
},
{
"date_utc": "2026-10-25T20:00:00Z",
"id": "race",
"name": "United States Grand Prix",
"type": "race"
}
],
"venue": {
"airport_iata": "AUS",
"city": "Austin, TX",
"country": "USA",
"latitude": 30.1328,
"longitude": -97.6411,
"name": "Circuit of the Americas",
"slug": "circuit_of_the_americas",
"transit_tips": "No rail to COTA; CapMetro event shuttles from downtown Austin + rideshare (~25 min, heavy post-race queues). AUS airport is ~12 mi north of the circuit."
},
"weather": null
},
"errors": [],
"league": "f1",
"request_id": "fnf_evt_001",
"retrieved_at": "2026-08-09T00:00:00Z",
"sport": "motorsport",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"check_in": {
"description": "Hotel check-in YYYY-MM-DD",
"type": "string"
},
"check_out": {
"description": "Hotel check-out YYYY-MM-DD",
"type": "string"
},
"guests": {
"default": 1,
"type": "integer"
},
"origin": {
"description": "Origin airport IATA for flight search",
"type": "string"
},
"passengers": {
"default": 1,
"type": "integer"
},
"session": {
"description": "practice|qualifying|race|game or a session id; selecting one enables travel enrichment",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://fanfare.run/v1/us-grand-prix-bundle" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://fanfare.run/v1/us-grand-prix-bundle");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://fanfare.run/v1/us-grand-prix-bundle")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6035.json, and this resource appears in /discovery/resources and /discovery/search.