search_google_flights_calendar
Find flight options and prices using Google Flights by specifying departure, arrival, dates, and travel preferences to plan trips efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adults | No | 成人数量 | |
arrival_id | Yes | 目的地ID | |
children | No | 儿童数量 | |
currency | No | 货币 | |
departure_id | Yes | 出发地ID | |
flight_type | Yes | 航班类型 | |
gl | No | 地理位置 | |
hl | No | 语言 | |
outbound_date | Yes | 出发日期 | |
outbound_date_end | No | 出发日期结束 | |
outbound_date_start | No | 出发日期开始 | |
return_date | No | 返程日期 | |
return_date_end | No | 返程日期结束 | |
return_date_start | No | 返程日期开始 | |
stops | No | 中转次数 | |
travel_class | No | 舱位等级 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"adults": {
"description": "成人数量",
"type": "string"
},
"arrival_id": {
"description": "目的地ID",
"type": "string"
},
"children": {
"description": "儿童数量",
"type": "string"
},
"currency": {
"description": "货币",
"type": "string"
},
"departure_id": {
"description": "出发地ID",
"type": "string"
},
"flight_type": {
"description": "航班类型",
"type": "string"
},
"gl": {
"description": "地理位置",
"type": "string"
},
"hl": {
"description": "语言",
"type": "string"
},
"outbound_date": {
"description": "出发日期",
"type": "string"
},
"outbound_date_end": {
"description": "出发日期结束",
"type": "string"
},
"outbound_date_start": {
"description": "出发日期开始",
"type": "string"
},
"return_date": {
"description": "返程日期",
"type": "string"
},
"return_date_end": {
"description": "返程日期结束",
"type": "string"
},
"return_date_start": {
"description": "返程日期开始",
"type": "string"
},
"stops": {
"description": "中转次数",
"type": "string"
},
"travel_class": {
"description": "舱位等级",
"type": "string"
}
},
"required": [
"flight_type",
"departure_id",
"arrival_id",
"outbound_date"
],
"type": "object"
}