# Find Budget One-Way Flights within Europe

**Use case:** 

Identify affordable one-way flights between major European cities for flexible travel planning or multi-city itineraries. Quickly pinpoint the cheapest direct o

## Input

```json
{
  "originAirport": "CDG",
  "destinationAirport": "FCO",
  "outboundDate": "2024-08-20",
  "returnDate": "",
  "adults": 1,
  "children": 0,
  "infants": 0,
  "cabinClass": "economy",
  "currency": "EUR",
  "language": "en",
  "country": "US",
  "maxStops": "any",
  "airlines": [],
  "excludeAirlines": [],
  "maxResults": 10,
  "maxPrice": 150,
  "directOnly": true,
  "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.