TikTok Hashtags Popular API
API 한 번의 호출로 TikTok Hashtags Popular 데이터를 받아 가세요. Returns the hashtags TikTok itself ranks as trending in a market over the last 7, 30 or 90 days, from the hashtag board TikTok publishes for advertisers. Each row is one hashtag: `content.text` is the tag (no `#`), `id` is TikTok's hashtag id and `url` its TikTok page. What the board says about it is on `ext.trend`: `rank` on the board it was read from, `posts` and `views` for the window (not the tag's lifetime totals, which is why `engagement.views` is null), `industry` / `industry_id` / `industry_label` naming that board (null for the overall board), `popularity_curve` as one relative value per day (0 to 100, peak = 100), and `top_creators` with handle, name, followers and country. **Depth: TikTok shows three hashtags per board to a reader who is not logged in, and that is what this endpoint reads.** One board is therefore three rows. Pass `industry=all` to read the overall board and all 15 industry boards in one call, typically 44 to 46 unique hashtags, which is where the niche signal is (in Germany the industry boards carried #adventskalender, #kürbis and #berufsschule while the overall board was three general tags). A hashtag that ranks on more than one board appears once and is billed once: its `rank` and `industry` fields name the first board it was read from (overall first, then the industries in TikTok's order), and `ext.trend.boards` lists every board it ranks on with its rank there, so a hashtag in the top 3 overall and on an industry board shows both. **Markets:** the 27 TikTok publishes this board for. **Not available any more:** the 120-day window, a second page, the new-to-top-100 filter, rank change, and the business-services, financial-services and life-services industries; each is refused with a 400 at no charge. **Pricing is metered at 2 credits per hashtag returned, minimum 6.** One board costs 6; `industry=all` holds 96 and settles to the rows returned (about 90). A board with no rows costs nothing.
2026년 9월 업데이트SocialCrawl 팀이 직접 관리해요
TikTok이 직접 집계한 인기 해시태그 순위를 27개 시장 기준으로 7일, 30일, 90일 단위로 돌려줍니다. 해시태그마다 순위, 기간 내 게시물 수와 조회수, 일별 인기 추이, 업종 순위표, 대표 크리에이터가 붙습니다.
검색어 없이 시장별 트렌드를 모을 때 사용하세요. 순위표 하나에는 해시태그가 3개뿐이므로, 전체 순위표와 15개 업종 순위표를 한 번에 받으려면 industry=all을 넘기세요.
65개 플랫폼을 병렬로 검색합니다
Hashtags Popular API로 무엇을 할 수 있을까요
Hashtags Popular 엔드포인트가 통합 스키마와 계산 필드를 담은 TikTok 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/tiktok/hashtags/popular?countryCode=DE&period=7&industry=all"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/tiktok/hashtags/popular",
params={
'countryCode': 'DE',
'period': '7',
'industry': 'all',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/tiktok/hashtags/popular?countryCode=DE&period=7&industry=all",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| countryCode | 아니오 | Market to read the board for, as an ISO country code. One of the 27 markets TikTok publishes the board for. Defaults to US. (US | FR | DE | IT | ES | GB | AR | AU | BR | CA | CO | EG | ID | IL | JP | KR | MY | MX | PH | SA | SG | ZA | TW | TH | TR | AE | VN) |
| period | 아니오 | Window in days: 7, 30 or 90. Defaults to 7. Each window is a different board, not a longer list. (7 | 30 | 90) |
| industry | 아니오 | Which board to read. Omit for the overall board (3 hashtags). Pass an industry slug for that industry's board (3 hashtags), or `all` for the overall board plus all 15 industry boards in one call. (all | education | vehicle-and-transportation | baby-kids-and-maternity | beauty-and-personal-care | tech-and-electronics | travel | household-products | pets | home-improvement | apparel-and-accessories | news-and-entertainment | games | food-and-beverage | sports-and-outdoor | health) |
TikTok Hashtags Popular API는 무엇을 돌려주나요
이 엔드포인트의 응답 구조와 필드를 보여 주는 예시예요. 값은 이해를 돕기 위한 것이며 실제 조회 결과는 아니에요.
응답 예시 보기
{
"success": true,
"platform": "tiktok",
"endpoint": "/v1/tiktok/hashtags/popular",
"data": {
"items": [
{
"post": {
"id": "7350401306668269570",
"url": "https://www.tiktok.com/tag/marvelrivals",
"content": {
"text": "marvelrivals",
"media_urls": null,
"thumbnail_url": null,
"duration_seconds": null
},
"author": {
"username": null,
"display_name": null,
"avatar_url": null,
"verified": null
},
"engagement": {
"views": null,
"likes": null,
"comments": null,
"shares": null,
"saves": null
},
"flags": {
"nsfw": null,
"spoiler": null,
"pinned": null,
"deleted": false
},
"published_at": null,
"ext": {
"trend": {
"rank": 3,
"country_code": "DE",
"period_days": 7,
"posts": 31505,
"views": 9983613,
"industry": null,
"industry_id": null,
"industry_label": null,
"boards": [
{
"industry": null,
"industry_id": null,
"industry_label": null,
"rank": 3
},
{
"industry": "games",
"industry_id": "25000000000",
"industry_label": "Games",
"rank": 1
}
],
"popularity_curve": [
{
"date": "2026-09-05",
"value": 0.25150066717997976
},
{
"date": "2026-09-06",
"value": 0.17747966183783023
},
{
"date": "2026-09-07",
"value": 0
},
{
"date": "2026-09-08",
"value": 9.707961029648722
},
{
"date": "2026-09-09",
"value": 19.501874523150537
},
{
"date": "2026-09-10",
"value": 20.96499734263637
},
{
"date": "2026-09-11",
"value": 100
}
],
"top_creators": [
{
"username": "flamejohnyt",
"display_name": "Flamejohn",
"followers": 5187,
"country_code": "DE",
"url": "https://www.tiktok.com/@flamejohnyt"
}
]
}
}
},
"computed": {
"engagement_rate": null,
"language": null,
"content_category": "other",
"estimated_reach": null
}
},
{
"post": {
"id": "1607680521348102",
"url": "https://www.tiktok.com/tag/fortnitedeutsch",
"content": {
"text": "fortnitedeutsch",
"media_urls": null,
"thumbnail_url": null,
"duration_seconds": null
},
"author": {
"username": null,
"display_name": null,
"avatar_url": null,
"verified": null
},
"engagement": {
"views": null,
"likes": null,
"comments": null,
"shares": null,
"saves": null
},
"flags": {
"nsfw": null,
"spoiler": null,
"pinned": null,
"deleted": false
},
"published_at": null,
"ext": {
"trend": {
"rank": 2,
"country_code": "DE",
"period_days": 7,
"posts": 14209,
"views": 6151372,
"industry": "games",
"industry_id": "25000000000",
"industry_label": "Games",
"boards": [
{
"industry": "games",
"industry_id": "25000000000",
"industry_label": "Games",
"rank": 2
}
],
"popularity_curve": [
{
"date": "2026-09-05",
"value": 12.367014372778716
},
{
"date": "2026-09-06",
"value": 21.449909109534023
},
{
"date": "2026-09-07",
"value": 52.11465027446083
},
{
"date": "2026-09-08",
"value": 72.59769202060639
},
{
"date": "2026-09-09",
"value": 100
},
{
"date": "2026-09-10",
"value": 7.596852750632019
},
{
"date": "2026-09-11",
"value": 0
}
],
"top_creators": [
{
"username": "pocax_pcx",
"display_name": "PocaX",
"followers": 452762,
"country_code": "DE",
"url": "https://www.tiktok.com/@pocax_pcx"
}
]
}
}
},
"computed": {
"engagement_rate": null,
"language": null,
"content_category": "other",
"estimated_reach": null
}
}
],
"total": null
},
"credits_used": 90,
"credits_remaining": 9910,
"request_id": "req-a1b2c3d4e5f6"
}문서에 나온 응답 구조를 보여 주는 예시예요. 값은 이해를 돕기 위한 것이며 운영 환경에서 가져온 응답이 아니에요.
TikTok Hashtags Popular 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"
}
}
}TikTok Hashtags Popular 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 TikTok 데이터를 받아 가세요.
