search_google_maps_reviews
Retrieve and analyze Google Maps reviews by specifying place ID, filters, and language to extract insights or compare ratings effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data_id | No | 数据ID | |
gl | No | 地理位置 | |
hl | No | 语言 | |
next_page_token | No | 下一页令牌 | |
place_id | No | 地点ID | |
rating | No | 评分 | |
reviews_limit | No | 评论数量限制 | |
sort_by | No | 排序方式 | |
topic_id | No | 主题ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data_id": {
"description": "数据ID",
"type": "string"
},
"gl": {
"description": "地理位置",
"type": "string"
},
"hl": {
"description": "语言",
"type": "string"
},
"next_page_token": {
"description": "下一页令牌",
"type": "string"
},
"place_id": {
"description": "地点ID",
"type": "string"
},
"rating": {
"description": "评分",
"type": "string"
},
"reviews_limit": {
"description": "评论数量限制",
"type": "string"
},
"sort_by": {
"description": "排序方式",
"type": "string"
},
"topic_id": {
"description": "主题ID",
"type": "string"
}
},
"type": "object"
}