search_google_hotels
Find and compare hotels on Google Maps using specific criteria like check-in/out dates, price range, amenities, and ratings. Tailor results by location, language, and preferences for a personalized booking experience.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adults | No | 成人数量 | |
amenities | No | 设施 | |
bathrooms | No | 浴室数量 | |
bedrooms | No | 卧室数量 | |
brands | No | 品牌 | |
check_in_date | Yes | 入住日期 | |
check_out_date | Yes | 退房日期 | |
children_ages | No | 儿童年龄 | |
currency | No | 货币 | |
eco_certified | No | 生态认证 | |
for_displaced_individuals | No | 为流离失所的个人 | |
free_cancellation | No | 免费取消 | |
gl | No | 地理位置 | |
hl | No | 语言 | |
hotel_class | No | 酒店等级 | |
next_page_token | No | 下一页令牌 | |
price_max | No | 最高价格 | |
price_min | No | 最低价格 | |
property_type | No | 物业类型 | |
property_types | No | 物业类型列表 | |
q | Yes | 搜索查询 | |
rating | No | 评分 | |
sort_by | No | 排序方式 | |
special_offers | No | 特别优惠 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"adults": {
"description": "成人数量",
"type": "string"
},
"amenities": {
"description": "设施",
"type": "string"
},
"bathrooms": {
"description": "浴室数量",
"type": "string"
},
"bedrooms": {
"description": "卧室数量",
"type": "string"
},
"brands": {
"description": "品牌",
"type": "string"
},
"check_in_date": {
"description": "入住日期",
"type": "string"
},
"check_out_date": {
"description": "退房日期",
"type": "string"
},
"children_ages": {
"description": "儿童年龄",
"type": "string"
},
"currency": {
"description": "货币",
"type": "string"
},
"eco_certified": {
"description": "生态认证",
"type": "string"
},
"for_displaced_individuals": {
"description": "为流离失所的个人",
"type": "string"
},
"free_cancellation": {
"description": "免费取消",
"type": "string"
},
"gl": {
"description": "地理位置",
"type": "string"
},
"hl": {
"description": "语言",
"type": "string"
},
"hotel_class": {
"description": "酒店等级",
"type": "string"
},
"next_page_token": {
"description": "下一页令牌",
"type": "string"
},
"price_max": {
"description": "最高价格",
"type": "string"
},
"price_min": {
"description": "最低价格",
"type": "string"
},
"property_type": {
"description": "物业类型",
"type": "string"
},
"property_types": {
"description": "物业类型列表",
"type": "string"
},
"q": {
"description": "搜索查询",
"type": "string"
},
"rating": {
"description": "评分",
"type": "string"
},
"sort_by": {
"description": "排序方式",
"type": "string"
},
"special_offers": {
"description": "特别优惠",
"type": "string"
}
},
"required": [
"q",
"check_in_date",
"check_out_date"
],
"type": "object"
}