F1 Las Vegas Grand Prix race-weekend trip planner at Las Vegas Strip Circuit, Las Vegas, N
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.
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-11-22",
"check_out": "2026-11-22",
"origin": "JFK",
"session": "race"
},
"type": "http"
},
"output": {
"example": {
"data": {
"event": "Las Vegas Grand Prix Bundle",
"flights": null,
"hotels": null,
"league": "f1",
"season": "2026",
"selected_session": null,
"sessions": [
{
"date_utc": "2026-11-20T02:30:00Z",
"id": "fp1",
"name": "Free Practice 1",
"type": "practice"
},
{
"date_utc": "2026-11-20T06:00:00Z",
"id": "fp2",
"name": "Free Practice 2",
"type": "practice"
},
{
"date_utc": "2026-11-21T02:30:00Z",
"id": "fp3",
"name": "Free Practice 3",
"type": "practice"
},
{
"date_utc": "2026-11-21T04:00:00Z",
"id": "qualifying",
"name": "Qualifying",
"type": "qualifying"
},
{
"date_utc": "2026-11-22T06:00:00Z",
"id": "race",
"name": "Las Vegas Grand Prix",
"type": "race"
}
],
"venue": {
"airport_iata": "LAS",
"city": "Las Vegas, NV",
"country": "USA",
"latitude": 36.1147,
"longitude": -115.1728,
"name": "Las Vegas Strip Circuit",
"slug": "las_vegas_strip_circuit",
"transit_tips": "The circuit runs on the Strip; most Strip hotels are within walking distance of a grandstand. Harry Reid (LAS) airport is ~3 mi / 10 min. Expect road closures — walk, don't drive, race weekend."
},
"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/las-vegas-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/las-vegas-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/las-vegas-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/6033.json, and this resource appears in /discovery/resources and /discovery/search.