# Compare Business Class Flights Asia to US

**Use case:** 

Scrape and compare business class flight options from key Asian business hubs to major US cities, including specific airline preferences. This data helps corpor

## Input

```json
{
  "originAirport": "NRT",
  "destinationAirport": "LAX",
  "outboundDate": "2024-10-01",
  "returnDate": "2024-10-08",
  "adults": 1,
  "children": 0,
  "infants": 0,
  "cabinClass": "business",
  "currency": "JPY",
  "language": "en",
  "country": "US",
  "maxStops": "nonstop",
  "airlines": [
    "JL",
    "UA",
    "NH"
  ],
  "excludeAirlines": [],
  "maxResults": 15,
  "directOnly": false,
  "excludeBasicEconomy": false,
  "useApifyProxy": true
}
```

## Output

```json
{
  "price": {
    "label": "Price"
  },
  "airline": {
    "label": "Airline"
  },
  "departureAirport": {
    "label": "Departure airport"
  },
  "departureTime": {
    "label": "Departure time"
  },
  "arrivalAirport": {
    "label": "Arrival airport"
  },
  "arrivalTime": {
    "label": "Arrival time"
  },
  "durationMinutes": {
    "label": "Duration minutes"
  },
  "stops": {
    "label": "Stops"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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