# 查询从上海出发的低价机票目的地

**Use case:** 

查询从上海浦东出发的低价机票目的地，每条结果包含票价、该航线的常见价格、差价百分比、日期、航空公司和预订链接。

## Input

```json
{
  "departureId": "PVG",
  "tripType": "round_trip",
  "travelDuration": "any",
  "travelClass": "economy",
  "maxStops": "any",
  "maxDealsPerAirport": 30,
  "currency": "CNY",
  "hl": "zh-CN",
  "gl": "cn"
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Photo",
    "format": "string"
  },
  "name": {
    "label": "Destination",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "average_price": {
    "label": "Typical Price",
    "format": "number"
  },
  "savings": {
    "label": "Savings",
    "format": "number"
  },
  "savings_percent": {
    "label": "Savings %",
    "format": "number"
  },
  "is_below_typical": {
    "label": "Below Typical?",
    "format": "boolean"
  },
  "route": {
    "label": "Route",
    "format": "string"
  },
  "outbound_date": {
    "label": "Outbound",
    "format": "string"
  },
  "return_date": {
    "label": "Return",
    "format": "string"
  },
  "flight_duration": {
    "label": "Duration (min)",
    "format": "integer"
  },
  "stops": {
    "label": "Stops",
    "format": "integer"
  },
  "airline": {
    "label": "Airline",
    "format": "string"
  },
  "flight_link": {
    "label": "Booking Link",
    "format": "string"
  },
  "departure_id": {
    "label": "Departure Airport",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Flights Deals API - Cheap Destinations](https://apify.com/johnvc/google-flights-deals-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-flights-deals-api) to learn more, explore other use cases, and run it yourself.