Prism Trend Board API
API 한 번의 호출로 Prism Trend Board 데이터를 받아 가세요. Pass country_code (an ISO code Google Trends covers, such as DE). The board is computed live for this call and nothing is stored between calls, so there is no history and no days parameter: repeat calls within 15 minutes are served from cache. `breakout_posts` are videos on TikTok's local feed for that country, registered there, whose views are at least 3 times the median of the author's own recent posts (pinned posts and posts under 48 hours are left out, at least 8 posts are compared, and rows without enough posts are counted, not shown). `rising_sounds` are the sounds used most on that feed, with how many of each sound's first page of videos are from the last 3 days and whether it is a returning or new sound. `rising_hashtags` are TikTok's own hashtag board for the country, with growth from its daily popularity curve and the first day in the window it was non-zero. `rising_searches` are Google Trends Trending Now, where Google's own start time is the first-seen date. `sources` and `unavailable` say which parts answered. TikTok's hashtag board covers 27 markets; elsewhere that section is empty and says why. No language model is used. Music charts and Pinterest Trends are not included yet. The price is provisional.
2026년 9월 업데이트SocialCrawl 팀이 직접 관리해요
국가 하나를 넣으면 작성자 평소보다 조회수가 크게 높은 TikTok 게시물과 많이 쓰인 사운드, TikTok 해시태그 순위, Google 급상승 검색어를 반환합니다.
검색할 키워드 없이 한 나라에서 지금 뜨는 것을 살펴볼 때 사용하세요. 호출할 때마다 새로 계산하며 이력은 저장하지 않습니다.
67개 플랫폼을 병렬로 검색합니다
Trend Board API로 무엇을 할 수 있을까요
Trend Board 엔드포인트가 통합 스키마와 계산 필드를 담은 Prism 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/prism/trend-board?country_code=DE"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/prism/trend-board",
params={
'country_code': 'DE',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/prism/trend-board?country_code=DE",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| country_code | 예 | ISO 3166-1 alpha-2 country code, such as DE, US or KR. Any country Google Trends Trending Now covers. |
| period | 아니오 | 7 (default) or 30. The window of TikTok's hashtag board. Google Trending Now is always read over its longest window, 7 days. (7 | 30) |
| limit | 아니오 | Rows per section, 1 to 10. Default 10. |
Prism Trend Board API는 무엇을 돌려주나요
문서에 나온 응답 구조와 필드를 보여 주기 위해 만든 합성 예시예요. 값은 이해를 돕기 위한 것이며 실제 API 응답은 아니에요.
응답 예시 보기
{
"success": true,
"data": {
"country": "DE",
"period_days": 7,
"generated_at": "2026-09-23T01:30:00.000Z",
"policy_version": "n22-2026-09-23",
"breakout_posts": [
{
"id": "7684765644323032352",
"url": "https://www.tiktok.com/@creator/video/7684765644323032352",
"author": "creator",
"author_id": "7666924937450849302",
"region": "DE",
"views": 90000,
"published_at": "2026-09-12T21:35:33.000Z",
"vs_creator": 4,
"author_median_views": 22500,
"author_posts_compared": 8,
"music_id": "7684765700000000000"
}
],
"rising_sounds": [],
"rising_hashtags": [
{
"rank": 2,
"tag": "oktoberfest",
"url": "https://www.tiktok.com/tag/oktoberfest",
"posts": 10725,
"window_views": 121497473,
"growth_ratio": null,
"from_zero": true,
"rising": true,
"first_seen_in_window": {
"date": "2026-09-16",
"censored": false
},
"curve_points": 7
}
],
"rising_searches": [
{
"rank": 1,
"title": "lizzie borden",
"search_volume": 100000,
"increase_percent": 1000,
"started_at": "2026-09-16T04:40:00.000Z",
"ended_at": null,
"active": true,
"categories": [
"entertainment"
]
}
],
"sources": [
{
"key": "local_feed",
"ok": true,
"rows": 25
},
{
"key": "hashtag_board",
"ok": true,
"rows": 3
},
{
"key": "google_trending",
"ok": true,
"rows": 10
}
],
"unavailable": []
}
}문서에 나온 응답 구조를 확인하기 위한 합성 예시예요. 값은 이해를 돕기 위한 것이며 운영 환경에서 가져온 응답이 아니에요.
Prism Trend Board API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 67개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 67개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 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"
}
}
}Prism Trend Board 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 Prism 데이터를 받아 가세요.
