get_place
Retrieve detailed information about a place, including name, address, reviews, and photos, by providing its unique ID from Kakao Local API. Ideal for integrating location-based data in Korea.
Instructions
Fetches details for a place such as name, address, reviews, photos and etc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
place_id | Yes | ID of a place, which is document ID in location search results |
Input Schema (JSON Schema)
{
"properties": {
"place_id": {
"description": "ID of a place, which is document ID in location search results",
"minimum": 1,
"title": "Place Id",
"type": "integer"
}
},
"required": [
"place_id"
],
"title": "get_placeArguments",
"type": "object"
}