get_place_details
get_place_detailsRetrieves detailed place information by ID from a prior search: phone, website, opening hours, summary, and user reviews. Use it to check hours, links, or feedback for a specific result.
Instructions
Returns detailed information about a specific place: phone number, website URL, full opening hours for each day of the week, a short editorial summary, and up to 5 user reviews.
Always requires a place ID obtained from a prior search_places call.
Use this as a follow-up when the user wants full details about one of the search results, e.g.
• "What are the opening hours for that first restaurant?"
• "Does it have a website I can check?"
• "Show me the reviews for the top result."Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| place_id | Yes | The place ID returned by search_places (typically starts with 'ChIJ…') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Unique place ID | |
| name | Yes | Place display name | |
| hours | Yes | Weekday opening-hours descriptions, e.g. ['Monday: 9:00 AM – 5:00 PM', 'Tuesday: 9:00 AM – 5:00 PM', …] | |
| phone | Yes | National phone number; null if unavailable | |
| types | Yes | Google Place type tags | |
| rating | Yes | Average star rating (1.0–5.0); null if no ratings | |
| address | Yes | Formatted address | |
| reviews | Yes | Up to 5 most relevant user reviews | |
| summary | Yes | Short editorial summary of the place; null if unavailable | |
| website | Yes | Website URL; null if unavailable | |
| open_now | Yes | Whether the place is currently open; null if unknown | |
| price_level | Yes | Relative price: FREE | INEXPENSIVE | MODERATE | EXPENSIVE | VERY_EXPENSIVE | |
| user_rating_count | Yes | Total number of user reviews |