# One-Way Flight Price Comparison: LAX to NRT

**Use case:** 

Get real-time one-way flight prices from Los Angeles to Tokyo for August 5, 2026. Access details like airlines, durations, and carbon emissions.

## Input

```json
{
  "from_airport": "LAX",
  "to_airport": "NRT",
  "date": "2026-08-05",
  "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.