F1 Las Vegas Grand Prix race-weekend trip planner at Las Vegas Strip Circuit, La
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://fanfare.run/v1/las-vegas-grand-prix-bundle
| Category | Everything else |
|---|---|
| Provider host | fanfare.run |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.25 | 227 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"check_in": "2026-11-22",
"check_out": "2026-11-22",
"origin": "JFK",
"session": "race"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}