# Track Round-Trip Flight Prices from JFK to CDG

**Use case:** 

Monitor summer flight prices for a round-trip journey from JFK to CDG. Get live pricing, airlines, and itinerary details for your dates.

## Input

```json
{
  "from_airport": "JFK",
  "to_airport": "CDG",
  "date": "2026-07-10",
  "return_date": "2026-07-24",
  "trip": "round-trip",
  "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.