# Cheapest Places to Fly From Los Angeles With Prices

**Use case:** 

The cheapest places to fly from Los Angeles, as JSON: flight_price, hotel_price, travel dates, and destination airport for each idea. Pay per result.

## Input

```json
{
  "departureId": "LAX",
  "gl": "us",
  "hl": "en",
  "maxResultsPerDeparture": 8
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "departure_id": {
    "label": "Departure Airport",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "name": {
    "label": "Destination",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "flight_price": {
    "label": "Flight Price",
    "format": "number"
  },
  "hotel_price": {
    "label": "Hotel Price",
    "format": "number"
  },
  "start_date": {
    "label": "Start Date",
    "format": "string"
  },
  "end_date": {
    "label": "End Date",
    "format": "string"
  },
  "link": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Travel Explore API | Destination for AI Travel Agents](https://apify.com/johnvc/google-travel-explore-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-travel-explore-api) to learn more, explore other use cases, and run it yourself.