# First Class Flight Prices from JFK to HKG

**Use case:** 

Get live first class flight prices from New York (JFK) to Hong Kong (HKG) for December 1, 2026. View comparative fares in USD.

## Input

```json
{
  "origin": "JFK",
  "destination": "HKG",
  "departureDate": "2026-12-01",
  "departureDateEnd": "",
  "returnDate": "",
  "tripType": "one-way",
  "seatClass": "first",
  "adults": 1,
  "children": 0,
  "maxStops": "",
  "currency": "USD",
  "language": "en-US",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "airlines": {
    "label": "Airlines",
    "format": "string"
  },
  "stops": {
    "label": "Stops",
    "format": "integer"
  },
  "fromCode": {
    "label": "From",
    "format": "string"
  },
  "toCode": {
    "label": "To",
    "format": "string"
  },
  "departureDate": {
    "label": "Departure date",
    "format": "string"
  },
  "departureTime": {
    "label": "Departure time",
    "format": "string"
  },
  "arrivalTime": {
    "label": "Arrival time",
    "format": "string"
  },
  "totalDurationMin": {
    "label": "Duration (min)",
    "format": "integer"
  },
  "airlineCode": {
    "label": "Airline code",
    "format": "string"
  }
}
```

## About this Actor

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