localSearch
Search for places on Naver Maps using specific queries, display up to 5 results, and sort by correctness or review count for Korean locations.
Instructions
Searches for places registered with Naver's local service.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
display | No | number of search results to display in response | |
query | Yes | query used for search | |
sort | No | sorting method. random: sorted by correctness. comment: sorted by a number of reviews (descending) | random |
Input Schema (JSON Schema)
{
"properties": {
"display": {
"default": 5,
"description": "number of search results to display in response",
"maximum": 5,
"minimum": 0,
"title": "Display",
"type": "integer"
},
"query": {
"description": "query used for search",
"minLength": 1,
"title": "Query",
"type": "string"
},
"sort": {
"default": "random",
"description": "sorting method. random: sorted by correctness. comment: sorted by a number of reviews (descending)",
"enum": [
"random",
"comment"
],
"title": "Sort",
"type": "string"
}
},
"required": [
"query"
],
"title": "localSearchArguments",
"type": "object"
}