Google Flights Scraper avatar
Google Flights Scraper
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Google Flights Scraper

Google Flights Scraper

epctex/google-flights-scraper

Gather flight information from Google Flights right away. Extract details such as flights, fares, availability, and additional data. Blazing fast, and very powerful data source is at your fingertips!

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "currency": "USD",
8  "maxItems": 20,
9  "mode": "oneWay",
10  "departure": "LAX",
11  "arrival": "JFK",
12  "departureDate": "2024-02-01",
13  "returnDate": "2024-02-22",
14  "adults": 1,
15  "children": 0,
16  "infantsOnSeat": 0,
17  "infantsOnLap": 0,
18  "extendOutputFunction": "($) => { return {} }",
19  "customMapFunction": "(object) => { return {...object} }",
20  "proxy": {
21    "useApifyProxy": true
22  }
23}
24EOF
25
26# Run the Actor using an HTTP API
27# See the full API reference at https://docs.apify.com/api/v2
28curl "https://api.apify.com/v2/acts/epctex~google-flights-scraper/runs?token=$API_TOKEN" \
29  -X POST \
30  -d @input.json \
31  -H 'Content-Type: application/json'
Developer
Maintained by Community