scraper
Back to API docs

Overview

  • Overview

SERP

  • POSTSERP

Core

  • POSTGeocode
  • POSTTranslate
  • POSTSearch
  • POSTVision
  • POSTPlaces Search
  • POSTPlace Details
  • POSTPlaces Nearby
  • POSTAutocomplete

Maps

  • POSTSearch
  • POSTPlace Details
  • POSTReviews

Hotels

  • POSTSearch
  • POSTDetail
  • POSTReviews
  • POSTPhotos

Flights

  • POSTSearch
  • POSTCalendar
  • POSTExplore

Finance

  • POSTQuote
  • POSTFundamentals
  • POSTChart
  • POSTNews
  • POSTSearch
  • POSTEstimates
  • POSTEarnings

Explore Destinations

1 credit

Discover cheapest destinations from an origin airport.

POST/api/v1/tools/google-flights/explore

Parameters

originstringrequired

Departure airport IATA code (e.g. "SFO", "JFK").

cabinClassstring

"economy", "premium-economy", "business", or "first". Defaults to "economy".

tripDurationstring

"weekend", "1-week", or "2-weeks". Defaults to "1-week".

monthstring

"next-6-months", or a month name (e.g. "June"). Defaults to "next-6-months".

fieldsstring[]

Fields to include per result. Omit or pass ["*"] for all.

Response Schema

dataobject

Google Flights explore result

resultsobject[]

Array of destination results

countnumber

Total number of results

metaobject

Request metadata

toolstring

Tool name (google-flights-explore)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/google-flights/explore \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"origin": "SFO"
}'

Response Example

{
"data": {
"results": [
{
"city": "Los Angeles",
"country": "United States",
"airport": "LAX",
"departureDate": "2026-07-10",
"returnDate": "2026-07-17",
"price": 128,
"cheapestPrice": 89,
"airline": "Southwest Airlines",
"airlineCode": "WN",
"stops": 0,
"duration": 90
},
{
"city": "Seattle",
"country": "United States",
"airport": "SEA",
"departureDate": "2026-07-12",
"returnDate": "2026-07-19",
"price": 156,
"cheapestPrice": 112,
"airline": "Alaska Airlines",
"airlineCode": "AS",
"stops": 0,
"duration": 135
}
],
"count": 2
},
"meta": {
"tool": "google-flights-explore",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}