The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Google Flights listing page.
The most efficient, reliable, and developer-friendly way to use the Google Flights API.
Actor page: apify.com/johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search Input schema: apify.com/johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search/input-schema
The Google Flights API searches flights and returns clean, structured JSON. Each page of results comes back with the top recommended flights and alternatives, full flight legs and timings, prices, price insights (level and historical range), airport details, and search metadata. It supports one-way, round-trip, and multi-city itineraries, single or multiple airports, filters for price, stops, airlines, and passenger counts, and can optionally resolve direct airline and OTA booking links. Localized across 29+ languages and 39+ countries.
Clone the repository
Install dependencies with UV
Configure your API key
Run the example
This repo also includes google-flights-get-booking-options.py, a low-cost one-way example (BOS to PQI) that enables fetch_booking_options to resolve direct airline and OTA booking links:
Complete itineraries. Search one-way, round-trip, and multi-city trips, with single or multiple departure and arrival airports, and get the top recommended flights plus alternatives with full leg-by-leg detail.
Direct booking links. Enable fetch_booking_options and each flight resolves to a live booking URL on the airline or OTA site, with fare families and baggage fees, ready to embed in your app.
Powerful filters. Constrain by max price, max stops, preferred airlines, passenger counts, and exclude basic economy.
Price intelligence. Every search returns price insights: the current level (low, typical, high) and a historical price range for the route.
Predictable, pay-per-use pricing. Billing is per page processed, plus per resolved booking link only when you ask for them. No subscription. You control cost with the page limit.
Easy to automate. Call it from Python in a few lines, or load it as an MCP tool so assistants like Claude and Cursor can search flights for you on demand.
CDG,ORY)Note: fetch_booking_options works for one-way searches, is billed per resolved link, and needs Actor memory of 512 MB or more (it uses a headless browser).
Either departure_id + arrival_id + outbound_date, or multi_city_json, is required.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
departure_id | string | Yes* | - | Departure airport code(s), comma-separated for multiple (e.g. LAX, CDG,ORY). |
arrival_id | string | Yes* | - | Arrival airport code(s), comma-separated for multiple. |
outbound_date | string | Yes* | - | Departure date, YYYY-MM-DD. |
return_date | string | No | (none) | Return date for round trips, YYYY-MM-DD. |
multi_city_json | string | Yes* | - | JSON string of legs for multi-city trips. Replaces the three fields above. |
adults | integer | No | 1 | Adult passengers (minimum 1). |
children | integer | No | 0 | Child passengers. |
infants | integer | No | 0 | Infant passengers. |
currency | string | No | USD | Currency code, e.g. USD, EUR, GBP. |
hl | string | No | en | Language code (29+ supported). |
gl | string | No | us | Country code (39+ supported). |
max_price | integer | No | (none) | Maximum price filter in the chosen currency. |
max_stops | integer | No | (none) | Maximum stops (0 = direct only). |
airlines | string | No | (none) | Comma-separated preferred airline codes, e.g. UA,AA,DL. |
exclude_basic | boolean | No | false | Exclude basic-economy fares. |
fetch_booking_options | boolean | No | false | Resolve direct booking links (one-way only; billed per link; needs 512 MB+). |
max_pages | integer | No | 1 | Maximum pages to fetch (0 = no limit). |
output_file | string | No | (none) | Optional filename to save results. |
A real result for LAX to JFK (one item per page; best_flights legs and the price_insights history are trimmed here for readability).
When fetch_booking_options is true, each booking_options entry includes a resolved booking_url to the airline or OTA, plus fare family and baggage details.
You can load the Google Flights API as an MCP tool so assistants call it for you. The MCP server URL preloads just this one Actor:
Authenticate with OAuth in the browser when offered, or with your Apify API token (the same APIFY_API_TOKEN used by the Python example). Get a token at https://console.apify.com/settings/integrations and a free Apify account at https://apify.com?fpr=9n7kx3 .

Cowork is the desktop app's automation mode. To give it the Google Flights API as a tool, add the Apify MCP server as a connector.
claude_desktop_config.json directly).
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonDownload the desktop app and start a free trial: https://claude.ai/referral/uIlpa7nPLg More help: https://docs.apify.com/platform/integrations/claude-desktop

Claude Code is the command-line tool. Add the Actor's MCP server with one command:
To use a token instead of browser OAuth:
Then verify with claude mcp list, or run /mcp inside a session. Ask Claude Code to call the Google Flights API.
Try Claude Code free: https://claude.ai/referral/uIlpa7nPLg Claude Code MCP docs: https://code.claude.com/docs/en/mcp

On claude.ai you add Apify as a connector, then enable just this Actor's tool.
johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search.https://mcp.apify.com/?tools=actors,docs,johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search, using OAuth when prompted.Open Claude on the web: https://claude.ai/referral/uIlpa7nPLg

Cursor reads MCP servers from a project file at .cursor/mcp.json.
.cursor/mcp.json:New to Cursor? Get it here: https://cursor.com/referral?code=XQP4VBLI3NNX

ChatGPT connects to the Apify MCP server through Developer mode (available on ChatGPT Pro, Plus, Business, Enterprise, and Education plans).
https://mcp.apify.com/?tools=actors,docs,johnvc/Google-Flights-Data-Scraper-Flight-and-Price-SearchMore help: https://docs.apify.com/platform/integrations/mcp
Use the Google Flights API to power travel apps, fare tracking, and analytics with reliable, structured results.
Last Updated: 2026.09.09