Google Trends Trending API
API 한 번의 호출로 Google Trends Trending 데이터를 받아 가세요. Returns what people in one country or region are searching for right now, with no keyword in: the Google Trends Trending Now list for a place and a time window. Each item has `rank` (Google's relevance position), `title`, `search_volume` (the lower bound of Google's bucket, so 50000 means 50K+), `increase_percent` (Google shows at most 1000), `started_at`, `ended_at` and `active` (still trending when `ended_at` is null), `categories`, `breakdown` (the related searches Google groups into the trend) and up to 3 `news` articles Google links to it. `total` counts every trend matching your filters before `limit`. Narrow with `hours`, `category` and `status`, and reorder with `sort`; these are the same filters trends.google.com/trending offers. Google publishes no worldwide list, so `location` is required. A place and window with nothing trending returns 404 at 0 credits; filters that match nothing return an empty list at 0 credits. Typically under 2 seconds; allow 30 seconds for the slow tail. Exact repeats within 5 minutes are served from cache at 0 credits.
2026년 9월 업데이트SocialCrawl 팀이 직접 관리해요
국가나 지역 하나의 Google 트렌드 인기 급상승 검색어 목록을 돌려줍니다. 트렌드마다 검색량, 증가율, 시작과 종료 시각, 카테고리, 관련 검색어, 연결된 뉴스가 함께 나옵니다.
키워드를 정하지 않고 한 시장에서 지금 무엇을 검색하는지 찾을 때 사용하세요. 기간, 카테고리, 진행 중 여부로 좁힐 수 있습니다.
65개 플랫폼을 병렬로 검색합니다
Trending API로 무엇을 할 수 있을까요
Trending 엔드포인트가 통합 스키마와 계산 필드를 담은 Google Trends 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/google_trends/trending?location=DE&hours=24"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/google_trends/trending",
params={
'location': 'DE',
'hours': '24',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/google_trends/trending?location=DE&hours=24",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| location | 예 | Where to read trends. An ISO country code ('DE', 'US', 'KR'), its English name ('Germany'), or an ISO 3166-2 region inside it ('DE-BY', 'US-CA', 'GB-SCT'). Google covers 125 countries and has no worldwide list; a country it does not cover is rejected with a free 400. |
| hours | 아니오 | Only trends that started in the past 4, 24, 48 or 168 hours (7 days). Defaults to 24. (4 | 24 | 48 | 168) |
| category | 아니오 | Keep trends Google tagged with this category: autos_and_vehicles, beauty_and_fashion, business_and_finance, climate, entertainment, food_and_drink, games, health, hobbies_and_leisure, jobs_and_education, law_and_government, other, pets_and_animals, politics, science, shopping, sports, technology, or travel_and_transportation. These are Trending Now's categories, not the numeric codes /v1/google_trends/explore takes. Defaults to every category. (autos_and_vehicles | beauty_and_fashion | business_and_finance | entertainment | food_and_drink | games | health | hobbies_and_leisure | jobs_and_education | law_and_government | other | pets_and_animals | politics | science | shopping | sports | technology | travel_and_transportation | climate) |
| status | 아니오 | `active` keeps only trends that are still trending. Defaults to `all`, which also returns trends that have already ended inside the window. (all | active) |
| sort | 아니오 | relevance (Google's own order, the default), search_volume (largest first), recency (most recently started first), or title (A to Z). (relevance | search_volume | recency | title) |
| limit | 아니오 | How many trends to return after filtering and sorting, 1 to 500. Defaults to 100. |
Google Trends Trending API는 무엇을 돌려주나요
이 엔드포인트의 응답 구조와 필드를 보여 주는 예시예요. 값은 이해를 돕기 위한 것이며 실제 조회 결과는 아니에요.
응답 예시 보기
{
"success": true,
"data": {
"items": [
{
"rank": 1,
"title": "judith und mel",
"search_volume": 50000,
"increase_percent": 1000,
"started_at": "2026-09-12T11:10:00.000Z",
"ended_at": null,
"active": true,
"categories": [
"entertainment"
],
"breakdown": [
"mel jersey",
"t online"
],
"news": [
{
"title": "Nach Herzinfarkt und Hausbrand: Schlagerstar schwer gestürzt",
"url": "https://www.t-online.de/unterhaltung/stars/id_101432554/judith-und-mel-nach-herzinfarkt-und-hausbrand-schlagerstar-gestuerzt.html",
"source": "T-Online",
"domain": "t-online.de",
"image_url": null,
"published_at": "2026-09-12T09:44:47.000Z"
}
]
}
],
"total": 431
}
}문서에 나온 응답 구조를 보여 주는 예시예요. 값은 이해를 돕기 위한 것이며 운영 환경에서 가져온 응답이 아니에요.
Google Trends Trending API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 65개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 65개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.
코드 한 줄 쓰기 전에, 데이터부터
Visual Data Explorer에 URL만 붙여넣으면 결과 카드와 정형화된 테이블, CSV 내보내기를 바로 사용할 수 있습니다.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Google Trends Trending 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 Google Trends 데이터를 받아 가세요.
