get_restaurant_details
Retrieve comprehensive restaurant details such as reviews, photos, and opening hours using the Google Places ID. Supports multiple locales for accurate, localized information.
Instructions
Get detailed information about a specific restaurant including reviews, photos, and opening hours
Input Schema
Name | Required | Description | Default |
---|---|---|---|
locale | No | Locale for restaurant details (e.g., "en" for English, "zh-TW" for Traditional Chinese, "ja" for Japanese, "ko" for Korean). Affects restaurant names, reviews, and other text content. | en |
placeId | Yes | Google Places ID of the restaurant |
Input Schema (JSON Schema)
{
"properties": {
"locale": {
"default": "en",
"description": "Locale for restaurant details (e.g., \"en\" for English, \"zh-TW\" for Traditional Chinese, \"ja\" for Japanese, \"ko\" for Korean). Affects restaurant names, reviews, and other text content.",
"type": "string"
},
"placeId": {
"description": "Google Places ID of the restaurant",
"type": "string"
}
},
"required": [
"placeId"
],
"type": "object"
}