crawl_google_trends
Collect and analyze Google Trends data for specified keywords, locations, and timeframes, providing search interest scores from 0 to 100 for trend comparison.
Instructions
구글 트렌드 수집 요청
최근 며칠 이내의 키워드 트렌드 추이를 0~100 사이의 값으로 표현 됩니다.
(검색량은 아니고, 검색 관심도를 나타냅니다. 해당 수치는 0~100 사이의 값으로 표현 됩니다.)
trends: 기간을 기준으로 차트에서 가장 높은 지점 대비 검색 관심도를 나타냅니다.
값은 검색 빈도가 가장 높은 검색어의 경우 100, 검색 빈도가 그 절반 정도인 검색어의 경우 50,
해당 검색어에 대한 데이터가 충분하지 않은 경우 0으로 나타납니다.
args:
keywords: List[str], 키워드 리스트
location: Literal['South Korea', 'Japan'],
timeframe: Literal['now 1-H', 'now 7-d', 'today 1-m'],
gl: Literal['kr', 'jp']
returns:
dict[Any] | None: 구글 트렌드 수집 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gl | Yes | ||
keywords | Yes | ||
location | Yes | ||
timeframe | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gl": {
"enum": [
"kr",
"jp"
],
"title": "Gl",
"type": "string"
},
"keywords": {
"items": {
"type": "string"
},
"title": "Keywords",
"type": "array"
},
"location": {
"enum": [
"South Korea",
"Japan"
],
"title": "Location",
"type": "string"
},
"timeframe": {
"enum": [
"now 1-H",
"now 7-d",
"today 1-m"
],
"title": "Timeframe",
"type": "string"
}
},
"required": [
"keywords",
"location",
"timeframe",
"gl"
],
"title": "crawl_google_trendsArguments",
"type": "object"
}