crawl_google_suggest_extensions
Collect Google Suggest extension keywords for a given term, including common suggestions and country-specific suffixes, to expand keyword research efficiently.
Instructions
키워드에 대한 구글 서제스트 확장 키워드 수집 요청
args:
keyword: str, 키워드
gl: Literal['kr', 'us', 'jp'] = "kr", 국가 코드
returns:
dict[Any] | None: 구글 서제스트 확장 키워드 수집 결과
키워드 확장
suggestions(common)
키워드의 suggestions(1 depth) + 1 depth 결과들의 suggestions(2 depth)
suffix(나라별)
한국 (gl : kr) : 2405개
keyword + space (1 개)
keyword + 한글 자음(ㄱ~ㅎ: 19 개)
keyword + 한글 음절 (2350 개)
keyword + 알파벳(a~z: 26 게)
keyword + 숫자(0~9: 10 개)
미국 (gl : us) : 37개
keyword + space (1 개)
keyword + 알파벳(a~z: 26 개)
keyword + 숫자(0~9: 10 개)
일본 (gl : jp) : 2318개
keyword + space (1 개)
keyword + 히라가나 (46 개)
keyword + 히라가나 * 히라가나 (2116 개)
keyword + 가타카나 (46 개)
keyword + 일어 음절 (73 개)
keyword + 알파벳(a~z: 26 개)
keyword + 숫자(0~9: 10 개)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gl | No | kr | |
keyword | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gl": {
"default": "kr",
"enum": [
"kr",
"us",
"jp"
],
"title": "Gl",
"type": "string"
},
"keyword": {
"title": "Keyword",
"type": "string"
}
},
"required": [
"keyword"
],
"title": "crawl_google_suggest_extensionsArguments",
"type": "object"
}