# Live Flight Prices to World Cup 2026 Cities from JFK

**Use case:** 

Retrieve real-time flight prices from JFK to DFW for June 27, 2026. Get detailed itineraries with airlines, durations, and carbon emissions.

## Input

```json
{
  "from_airport": "JFK",
  "to_airport": "DFW",
  "date": "2026-06-27",
  "trip": "one-way",
  "seat": "economy",
  "adults": 1,
  "children": 0,
  "infants_in_seat": 0,
  "infants_on_lap": 0,
  "language": "en",
  "max_results": 20
}
```

## Output

```json
{
  "airline_names": {
    "label": "Airline names",
    "format": "array"
  },
  "price": {
    "label": "Price (USD)",
    "format": "number"
  },
  "departure": {
    "label": "Departure ISO datetime",
    "format": "string"
  },
  "arrival": {
    "label": "Arrival ISO datetime",
    "format": "string"
  },
  "stops": {
    "label": "Number of stops",
    "format": "integer"
  },
  "duration_min_total": {
    "label": "Total duration (minutes)",
    "format": "integer"
  },
  "from_airport": {
    "label": "From IATA",
    "format": "string"
  },
  "to_airport": {
    "label": "To IATA",
    "format": "string"
  }
}
```

## About this Actor

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