search_by_keyword
Find places in Korea by entering a keyword, filtering by category, or specifying a location and radius using the Kakao Local API. Results can be paginated for easier navigation.
Instructions
Searches for places related to the keyword
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_group_code | No | category used for filtering results (CategoryGroupCode resource) | |
center_coordinate | No | longitude and latitude of a center | |
keyword | Yes | keyword used to search for places | |
page | No | page number of result | |
radius_from_center | No | search radius from the center in meters |
Input Schema (JSON Schema)
{
"$defs": {
"CategoryGroupCode": {
"enum": [
"대형마트 (Large Mart, Grocery Store)",
"편의점 (Convenience Store)",
"어린이집, 유치원 (Daycare, Kindergarten)",
"학교 (School)",
"학원 (Academy/Private Institute)",
"주차장 (Parking Lot)",
"주유소, 충전소 (Gas Station, Charging Station)",
"지하철역 (Subway Station)",
"은행 (Bank)",
"문화시설 (Cultural Facility)",
"중개업소 (Agency, e.g. Real Estate)",
"공공기관 (Public Institution)",
"관광명소 (Tourist Attraction)",
"숙박 (Accommodation)",
"음식점 (Restaurant)",
"카페 (Cafe)",
"병원 (Hospital)",
"약국 (Pharmacy)"
],
"title": "CategoryGroupCode",
"type": "string"
},
"Coordinate": {
"properties": {
"latitude": {
"title": "Latitude",
"type": "string"
},
"longitude": {
"title": "Longitude",
"type": "string"
}
},
"required": [
"longitude",
"latitude"
],
"title": "Coordinate",
"type": "object"
}
},
"properties": {
"category_group_code": {
"anyOf": [
{
"$ref": "#/$defs/CategoryGroupCode"
},
{
"type": "null"
}
],
"default": null,
"description": "category used for filtering results (CategoryGroupCode resource)"
},
"center_coordinate": {
"anyOf": [
{
"$ref": "#/$defs/Coordinate"
},
{
"type": "null"
}
],
"default": null,
"description": "longitude and latitude of a center"
},
"keyword": {
"description": "keyword used to search for places",
"minLength": 1,
"title": "Keyword",
"type": "string"
},
"page": {
"default": 1,
"description": "page number of result",
"minimum": 1,
"title": "Page",
"type": "integer"
},
"radius_from_center": {
"anyOf": [
{
"exclusiveMinimum": 0,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "search radius from the center in meters",
"title": "Radius From Center"
}
},
"required": [
"keyword"
],
"title": "search_by_keywordArguments",
"type": "object"
}