# Google Flights Scraper API — Fares & Multi-City (`muhammadafzal/google-flights-scraper-api`) Actor

Extract Google Flights fare cards with prices, airlines, schedules, stops, durations, and multi-city itinerary legs for travel research and AI agents.

- **URL**: https://apify.com/muhammadafzal/google-flights-scraper-api.md
- **Developed by:** [Muhammad Afzal](https://apify.com/muhammadafzal) (community)
- **Categories:** Travel, Automation, MCP servers
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 google flights fares

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Google Flights Scraper API — Fares & Multi-City

Query Google Flights from an Apify Actor or AI agent and receive structured visible fare cards for one-way, round-trip, and multi-city itineraries. It is designed for travel-price monitoring, itinerary comparison, metasearch prototypes, and agent workflows that need current fare snapshots.

### What it returns

Each dataset item includes the requested itinerary, visible price and currency, airline text, flight numbers when detected, departure/arrival times, duration, stops, cabin class, the search URL, and extraction warnings. Google Flights is interactive, so a direct booking URL is returned only when Google exposes one; it is otherwise `null`.

### Input examples

Standard round trip:

```json
{ "origin": "JFK", "destination": "LAX", "departureDate": "2026-08-15", "returnDate": "2026-08-22", "tripType": "roundTrip", "maxResults": 20 }
````

Multi-city:

```json
{ "tripType": "multiCity", "multiCityLegs": [
  { "origin": "JFK", "destination": "LHR", "date": "2026-08-15" },
  { "origin": "LHR", "destination": "CDG", "date": "2026-08-20" },
  { "origin": "CDG", "destination": "JFK", "date": "2026-08-27" }
] }
```

### Pricing

| Event | Price |
|---|---:|
| Actor start | $0.00005 |
| Fare record | $0.01 |

The actor stops emitting after `maxResults`. Residential proxy traffic is enabled by default and is billed separately by Apify according to the account’s proxy rates.

### Reliability and limitations

Google may show regional availability, consent screens, rate limits, or bot-detection pages. The actor preserves a diagnostic `OUTPUT` object and returns a successful warning state instead of pretending that an empty challenge page is a no-results search. Visible fare cards are snapshots and can change before booking; validate final availability, baggage rules, taxes, and booking terms with the airline or travel provider.

### Legal note

Use this actor responsibly and comply with Google’s terms, applicable law, and any relevant airline or travel-provider terms. Do not use it to misrepresent prices or bypass access controls.

# Actor input Schema

## `origin` (type: `string`):

Use this when searching a standard route. Enter a three-letter IATA airport code, for example JFK. Not used for multi-city searches.

## `destination` (type: `string`):

Use this when searching a standard route. Enter a three-letter IATA airport code, for example LAX. Not used for multi-city searches.

## `departureDate` (type: `string`):

Use this for the first flight date in YYYY-MM-DD format, for example 2026-08-15.

## `returnDate` (type: `string`):

Use this for a round-trip return date in YYYY-MM-DD format. Leave empty for one-way or multi-city.

## `tripType` (type: `string`):

Use this to select the itinerary shape. Multi-city requires multiCityLegs.

## `multiCityLegs` (type: `array`):

Use this for two to six sequential legs. Each object needs origin, destination, and date, for example \[{"origin":"JFK","destination":"LHR","date":"2026-08-15"}].

## `adults` (type: `integer`):

Use this to set the number of adult passengers. Default is 1.

## `children` (type: `integer`):

Use this to set the number of child passengers. Default is 0.

## `cabinClass` (type: `string`):

Use this to filter the requested cabin class. This is not a guarantee that every fare card has the same booking class.

## `currency` (type: `string`):

Use this to request a three-letter ISO currency code, for example USD, EUR, or GBP.

## `nonStop` (type: `boolean`):

Use this to request nonstop options on standard one-way or round-trip searches.

## `maxResults` (type: `integer`):

Use this to cap returned fare records and control runtime and cost. Default is 20.

## `useResidentialProxy` (type: `boolean`):

Use this to improve access reliability for Google Flights. Residential proxy usage may increase Apify runtime cost.

## `proxyCountry` (type: `string`):

Use this to choose the two-letter residential proxy country, for example US. Only applies when useResidentialProxy is true.

## `includeRawText` (type: `boolean`):

Use this when debugging or preserving the visible Google Flights fare-card text. Set false for the leanest output.

## Actor input object example

```json
{
  "origin": "JFK",
  "destination": "LAX",
  "departureDate": "2026-08-15",
  "returnDate": "2026-08-22",
  "tripType": "roundTrip",
  "adults": 1,
  "children": 0,
  "cabinClass": "economy",
  "currency": "USD",
  "nonStop": false,
  "maxResults": 20,
  "useResidentialProxy": true,
  "proxyCountry": "US",
  "includeRawText": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("muhammadafzal/google-flights-scraper-api").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("muhammadafzal/google-flights-scraper-api").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call muhammadafzal/google-flights-scraper-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=muhammadafzal/google-flights-scraper-api",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google Flights Scraper API — Fares & Multi-City",
        "description": "Extract Google Flights fare cards with prices, airlines, schedules, stops, durations, and multi-city itinerary legs for travel research and AI agents.",
        "version": "0.1",
        "x-build-id": "s8XOpmaL7QcxvXvUa"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/muhammadafzal~google-flights-scraper-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-muhammadafzal-google-flights-scraper-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/muhammadafzal~google-flights-scraper-api/runs": {
            "post": {
                "operationId": "runs-sync-muhammadafzal-google-flights-scraper-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/muhammadafzal~google-flights-scraper-api/run-sync": {
            "post": {
                "operationId": "run-sync-muhammadafzal-google-flights-scraper-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "origin": {
                        "title": "Origin airport",
                        "type": "string",
                        "description": "Use this when searching a standard route. Enter a three-letter IATA airport code, for example JFK. Not used for multi-city searches.",
                        "default": "JFK"
                    },
                    "destination": {
                        "title": "Destination airport",
                        "type": "string",
                        "description": "Use this when searching a standard route. Enter a three-letter IATA airport code, for example LAX. Not used for multi-city searches.",
                        "default": "LAX"
                    },
                    "departureDate": {
                        "title": "Departure date",
                        "type": "string",
                        "description": "Use this for the first flight date in YYYY-MM-DD format, for example 2026-08-15.",
                        "default": "2026-08-15"
                    },
                    "returnDate": {
                        "title": "Return date",
                        "type": "string",
                        "description": "Use this for a round-trip return date in YYYY-MM-DD format. Leave empty for one-way or multi-city.",
                        "default": "2026-08-22"
                    },
                    "tripType": {
                        "title": "Trip type",
                        "enum": [
                            "roundTrip",
                            "oneWay",
                            "multiCity"
                        ],
                        "type": "string",
                        "description": "Use this to select the itinerary shape. Multi-city requires multiCityLegs.",
                        "default": "roundTrip"
                    },
                    "multiCityLegs": {
                        "title": "Multi-city legs",
                        "type": "array",
                        "description": "Use this for two to six sequential legs. Each object needs origin, destination, and date, for example [{\"origin\":\"JFK\",\"destination\":\"LHR\",\"date\":\"2026-08-15\"}].",
                        "items": {
                            "type": "object",
                            "properties": {
                                "origin": {
                                    "type": "string",
                                    "title": "Leg origin",
                                    "description": "IATA airport code where this leg starts, for example JFK."
                                },
                                "destination": {
                                    "type": "string",
                                    "title": "Leg destination",
                                    "description": "IATA airport code where this leg ends, for example LHR."
                                },
                                "date": {
                                    "type": "string",
                                    "title": "Leg date",
                                    "description": "Departure date for this leg in YYYY-MM-DD format."
                                }
                            },
                            "required": [
                                "origin",
                                "destination",
                                "date"
                            ]
                        }
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "maximum": 9,
                        "type": "integer",
                        "description": "Use this to set the number of adult passengers. Default is 1.",
                        "default": 1
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "maximum": 8,
                        "type": "integer",
                        "description": "Use this to set the number of child passengers. Default is 0.",
                        "default": 0
                    },
                    "cabinClass": {
                        "title": "Cabin class",
                        "enum": [
                            "economy",
                            "premiumEconomy",
                            "business",
                            "first"
                        ],
                        "type": "string",
                        "description": "Use this to filter the requested cabin class. This is not a guarantee that every fare card has the same booking class.",
                        "default": "economy"
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Use this to request a three-letter ISO currency code, for example USD, EUR, or GBP.",
                        "default": "USD"
                    },
                    "nonStop": {
                        "title": "Nonstop only",
                        "type": "boolean",
                        "description": "Use this to request nonstop options on standard one-way or round-trip searches.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Maximum fares",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Use this to cap returned fare records and control runtime and cost. Default is 20.",
                        "default": 20
                    },
                    "useResidentialProxy": {
                        "title": "Use residential proxy",
                        "type": "boolean",
                        "description": "Use this to improve access reliability for Google Flights. Residential proxy usage may increase Apify runtime cost.",
                        "default": true
                    },
                    "proxyCountry": {
                        "title": "Proxy country",
                        "type": "string",
                        "description": "Use this to choose the two-letter residential proxy country, for example US. Only applies when useResidentialProxy is true.",
                        "default": "US"
                    },
                    "includeRawText": {
                        "title": "Include raw card text",
                        "type": "boolean",
                        "description": "Use this when debugging or preserving the visible Google Flights fare-card text. Set false for the leanest output.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
