get_detailed_information
Obtain comprehensive information about a Korean tourism item using its content ID. Returns address, description, images, contact, and type-specific details.
Instructions
Get detailed information about a specific tourism item in Korea.
This tool retrieves comprehensive details about a specific tourism item by its content ID. It combines common information, introduction details, and additional information to provide a complete picture of the tourism item.
Args: content_id (str): Content ID of the tourism item (obtained from other search functions) content_type (str, optional): Type of content. Valid values: - "Tourist Attraction" - "Cultural Facility" - "Festival Event" - "Leisure Activity" - "Accommodation" - "Shopping" - "Restaurant" - "Transportation" language (str, optional): Language for results (default: "en"). Supported: - "en" (English) - "jp" (Japanese) - "zh-cn" (Simplified Chinese) - "zh-tw" (Traditional Chinese) - "de" (German) - "fr" (French) - "es" (Spanish) - "ru" (Russian)
Returns: dict: Detailed information with structure: { # Common information "title": str, # Name of the item "contentid": str, # Unique content ID "contenttypeid": str, # Content type ID "addr1": str, # Primary address "addr2": str, # Secondary address "areacode": str, # Area code "sigungucode": str, # Sigungu code "cat1": str, # Category 1 code "cat2": str, # Category 2 code "cat3": str, # Category 3 code "mapx": str, # Longitude "mapy": str, # Latitude "mlevel": str, # Map level "overview": str, # Detailed description "tel": str, # Phone number "telname": str, # Contact name "homepage": str, # Website URL "firstimage": str, # URL of main image "firstimage2": str, # URL of thumbnail image "createdtime": str, # Creation timestamp "modifiedtime": str, # Last modified timestamp "zipcode": str, # Postal code
# Introduction details (varies by content type)
"infocenter": str, # Information center (for attractions)
"restdate": str, # Rest/closing days
"usetime": str, # Hours of operation
"parking": str, # Parking information
# ... other type-specific fields
# Additional information
"additional_info": [ # List of additional details
{
"infoname": str, # Name of the information
"infotext": str, # Detailed text information
"fldgubun": str, # Field division code
"serialnum": str # Serial number
}
# ... more items
]
}Example: get_detailed_information("126508", "Tourist Attraction", "en")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content_id | Yes | ||
| content_type | No | ||
| language | No |