Skip to main content
ClaudeWave
johnisanerd avatar
johnisanerd

Apify-Google-Flights-API

View on GitHub

Google Flights API on Apify - Python (uv) + MCP example. Flight and price search results as clean, structured JSON.

MCP ServersOfficial Registry1 stars0 forksPythonUpdated today
Install in Claude Code / Claude Desktop
Method: UVX (Python) · apify-google-flights-api
Claude Code CLI
claude mcp add apify-google-flights-api -- uvx apify-google-flights-api
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "apify-google-flights-api": {
      "command": "uvx",
      "args": ["apify-google-flights-api"],
      "env": {
        "APIFY_API_TOKEN": "<apify_api_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Package name inferred from the repository name. Verify it exists on PyPI, or clone https://github.com/johnisanerd/Apify-Google-Flights-API and follow its README.
Detected environment variables
APIFY_API_TOKEN
Use cases

MCP Servers overview

# ✈️ Google Flights API: Flight and Price Search in Clean JSON

> 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](https://apify.com/johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search?fpr=9n7kx3)
**Input schema:** [apify.com/johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search/input-schema](https://apify.com/johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search/input-schema?fpr=9n7kx3)

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.

## Video Walkthrough

[![Watch the walkthrough](https://img.youtube.com/vi/jREWahDGhJM/maxresdefault.jpg)](https://www.youtube.com/watch?v=jREWahDGhJM)

## Quick Start

### Prerequisites
- Python 3.11 or higher
- An Apify account and API key ([get a free key here](https://apify.com?fpr=9n7kx3))

1. **Clone the repository**
   ```bash
   git clone https://github.com/johnisanerd/Apify-Google-Flights-API.git
   cd Apify-Google-Flights-API
   ```

2. **Install dependencies with UV**
   ```bash
   # Install UV if you do not have it:
   curl -LsSf https://astral.sh/uv/install.sh | sh

   # Install project dependencies:
   uv sync
   ```

3. **Configure your API key**
   ```bash
   cp .env.example .env
   # Edit .env and add your Apify API key
   # Get your free API key at: https://apify.com?fpr=9n7kx3
   ```

4. **Run the example**
   ```bash
   uv run python google-flights-api.py
   ```

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:
```bash
uv run python google-flights-get-booking-options.py
```

### Alternative: set the API key directly
```bash
export APIFY_API_TOKEN="your_api_key_here"
uv run python google-flights-api.py
```

## Why Use This Google Flights API?

**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.

## Features

### Core Capabilities
- **One-way, round-trip, and multi-city** itineraries
- **Single or multiple airports** per leg (e.g. `CDG,ORY`)
- **Filters** for price, stops, airlines, passengers, and basic economy
- **Optional direct booking links** (airline/OTA URLs, fare families, baggage fees)
- **Localization** across 29+ languages and 39+ countries

### Data Quality
- **Best and alternative flights** with full leg timings, airline, and duration
- **Price insights** with level and historical range
- **Airport details** for departure and arrival
- **Per-page metadata** and search parameters echoed back
- **Consistent JSON** shape across every query

## Usage Examples

### Basic one-way search
```json
{
  "departure_id": "LAX",
  "arrival_id": "JFK",
  "outbound_date": "2026-06-17",
  "adults": 1,
  "currency": "USD",
  "max_pages": 1
}
```

### Round trip with filters
```json
{
  "departure_id": "JFK",
  "arrival_id": "LHR",
  "outbound_date": "2026-11-25",
  "return_date": "2026-12-02",
  "adults": 2,
  "max_price": 1500,
  "max_stops": 1,
  "max_pages": 2
}
```

### Multi-city trip
```json
{
  "multi_city_json": "[{\"departure_id\":\"CDG\",\"arrival_id\":\"NRT\",\"date\":\"2026-11-17\"},{\"departure_id\":\"NRT\",\"arrival_id\":\"LAX\",\"date\":\"2026-11-24\"}]",
  "adults": 1,
  "currency": "USD",
  "max_pages": 1
}
```

### Direct booking links
```json
{
  "departure_id": "LAX",
  "arrival_id": "JFK",
  "outbound_date": "2026-06-17",
  "adults": 1,
  "fetch_booking_options": true,
  "max_pages": 1
}
```
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).

## Input Parameters

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. |

## Output Format

A real result for `LAX` to `JFK` (one item per page; `best_flights` legs and the `price_insights` history are trimmed here for readability).

```json
{
  "search_parameters": {
    "trip_type_description": "One-way",
    "departure_id": "LAX",
    "arrival_id": "JFK",
    "outbound_date": "2026-06-17",
    "adults": 1,
    "currency": "USD",
    "language": "en",
    "country": "us"
  },
  "search_metadata": {
    "total_flights_found": 29,
    "best_flights_count": 3,
    "other_flights_count": 26,
    "pages_processed": 1,
    "pagination_limit_reached": true,
    "booking_options_count": 0
  },
  "page_number": 1,
  "best_flights": [
    {
      "price": 207,
      "type": "One way",
      "total_duration": 590,
      "flights": [
        {
          "departure_airport": { "name": "Los Angeles International Airport", "id": "LAX", "time": "2026-06-17 09:24" },
          "arrival_airport": { "name": "Charlotte Douglas International Airport", "id": "CLT", "time": "2026-06-17 17:28" },
          "airline": "American",
          "flight_number": "AA 2570",
          "travel_class": "Economy",
          "duration": 304
        },
        {
          "departure_airport": { "name": "Charlotte Douglas International Airport", "id": "CLT", "time": "2026-06-17 20:11" },
          "arrival_airport": { "name": "John F. Kennedy International Airport", "id": "JFK", "time": "2026-06-17 22:14" },
          "airline": "American",
          "flight_number": "AA 1727",
          "travel_class": "Economy",
          "duration": 123
        }
      ]
    }
  ],
  "other_flights": [],
  "price_insights": {
    "lowest_price": 207,
    "price_level": "typical",
    "typical_price_range": [145, 255]
  },
  "airports": [
    {
      "departure": [
        { "airport": { "id": "LAX", "name": "Los Angeles International Airport" }, "city": "Los Angeles", "country": "United States" }
      ],
      "arrival": [
        { "airport": { "id": "JFK", "name": "John F. Kennedy International Airport" }, "city": "New York", "country": "United States" }
      ]
    }
  ],
  "booking_options": []
}
```

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.

---

## Use as an MCP tool

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:

```
https://mcp.apify.com/?tools=actors,docs,johnvc/Google-Flights-Data-Scraper-Flight-and-Price-Search
```

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 .

## Install in Claude Cowork Desktop

![Install in Claude Cowork Desktop](https://raw.githubusercontent.com/johnisanerd/ApifyPublicData/main/assets/guides/install_mcp_into_claude_desktop.png)

Cowork is the desktop app's automation mode. To give it the Google Flights API as a tool, ad
airfareapiapifyclaudecursorflightsgoogle-flightsmcppythontravel

What people ask about Apify-Google-Flights-API

What is johnisanerd/Apify-Google-Flights-API?

+

johnisanerd/Apify-Google-Flights-API is mcp servers for the Claude AI ecosystem. Google Flights API on Apify - Python (uv) + MCP example. Flight and price search results as clean, structured JSON. It has 1 GitHub stars and was last updated today.

How do I install Apify-Google-Flights-API?

+

You can install Apify-Google-Flights-API by cloning the repository (https://github.com/johnisanerd/Apify-Google-Flights-API) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is johnisanerd/Apify-Google-Flights-API safe to use?

+

johnisanerd/Apify-Google-Flights-API has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains johnisanerd/Apify-Google-Flights-API?

+

johnisanerd/Apify-Google-Flights-API is maintained by johnisanerd. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to Apify-Google-Flights-API?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy Apify-Google-Flights-API to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: johnisanerd/Apify-Google-Flights-API
[![Featured on ClaudeWave](https://claudewave.com/api/badge/johnisanerd-apify-google-flights-api)](https://claudewave.com/repo/johnisanerd-apify-google-flights-api)
<a href="https://claudewave.com/repo/johnisanerd-apify-google-flights-api"><img src="https://claudewave.com/api/badge/johnisanerd-apify-google-flights-api" alt="Featured on ClaudeWave: johnisanerd/Apify-Google-Flights-API" width="320" height="64" /></a>