# Google Flights Business Class Extractor

**Use case:** 

Extract Google Flights business class fares, airlines, schedules, stops, duration, airports, and prices for route research.

## Input

```json
{
  "origin": "SFO",
  "destination": "LHR",
  "departureDate": "2026-09-10",
  "returnDate": "2026-09-17",
  "adults": 2,
  "children": 0,
  "cabinClass": "business",
  "maxResults": 30,
  "currency": "USD",
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "airline": {
    "label": "Airline",
    "format": "text"
  },
  "flightNumber": {
    "label": "Flight number",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "stops": {
    "label": "Stops",
    "format": "number"
  },
  "durationMinutes": {
    "label": "Duration (min)",
    "format": "number"
  },
  "departureTime": {
    "label": "Departure",
    "format": "text"
  },
  "arrivalTime": {
    "label": "Arrival",
    "format": "text"
  },
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "departureDate": {
    "label": "Departure date",
    "format": "text"
  },
  "cabinClass": {
    "label": "Cabin class",
    "format": "text"
  },
  "url": {
    "label": "Search URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Flights Scraper](https://apify.com/automation-lab/google-flights-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-flights-scraper) to learn more, explore other use cases, and run it yourself.