get_search_path
Retrieve search path analysis results for a given keyword and region using Hubble's Path Finder API. Specify keyword, region code (kr, jp), and limit to process and return structured data.
Instructions
Make a request to the Path Finder API of Hubble with proper error handling. Args: keyword: str, 검색 키워드 gl: str, 지역 코드 한국 일본(kr, jp) limit: int, 검색 경로 분석 결과 최대 개수(기본값 200) Returns: dict[str, Any] | None: 검색 경로 분석 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gl | No | kr | |
keyword | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"gl": {
"default": "kr",
"enum": [
"kr",
"jp"
],
"title": "Gl",
"type": "string"
},
"keyword": {
"title": "Keyword",
"type": "string"
},
"limit": {
"default": 200,
"title": "limit",
"type": "string"
}
},
"required": [
"keyword"
],
"title": "get_search_pathArguments",
"type": "object"
}