TikTok Videos Popular API
API 한 번의 호출로 TikTok Videos Popular 데이터를 받아 가세요. Returns the videos TikTok itself ranks at the top of its Top Videos board for a market over the last 7 or 30 days, sorted by views, engagement or 6-second views. Each row is a video: `id`, `url`, the caption at `content.text`, the cover and a video file URL (signed, expires within hours), the creator at `author.username` / `author.display_name` with `ext.author_id` and `ext.author_followers`, the upload time at `published_at`, and lifetime views at `engagement.views`. What the board says about it is on `ext.trend`: `rank`, `period_views` (views inside the window), `organic_views`, `engagement_rate`, `six_second_view_through_rate` and TikTok's `content_tags`. **Markets: TikTok publishes this board for US, JP, VN, TH and ID only.** Any other market, Germany included, is refused with a 400 at no charge; for those markets use `/v1/tiktok/hashtags/popular`, which covers 27. **The board carries no like, comment or share counts and no duration**, so those leaves are null rather than estimated. It includes paid and branded posts; `organic_views` is the only paid-versus-organic signal TikTok gives. A logged-out reader of TikTok's page sees the top four, and ranks 1 to 4 were checked against it; deeper ranks follow TikTok's order as served. **Pricing is metered at 25 credits per board plus 1 credit per video returned** (20 videos = 45 credits), because each read of the board has a fixed cost. An empty board costs nothing.
2026년 9월 업데이트SocialCrawl 팀이 직접 관리해요
미국, 일본, 베트남, 태국, 인도네시아의 TikTok 인기 영상 순위를 7일 또는 30일 기준으로 돌려줍니다. 영상마다 순위, 누적 조회수와 기간 내 조회수, 오가닉 조회수, 참여율, 콘텐츠 태그, 크리에이터가 붙습니다.
이 다섯 시장에서 TikTok이 가장 높게 매긴 영상을 볼 때 사용하세요. 다른 시장에는 순위표가 없어 요금 없이 400을 돌려주므로 hashtags/popular를 사용하세요.
65개 플랫폼을 병렬로 검색합니다
Videos Popular API로 무엇을 할 수 있을까요
Videos Popular 엔드포인트가 통합 스키마와 계산 필드를 담은 TikTok 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/tiktok/videos/popular?countryCode=US&period=7&orderBy=views"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/tiktok/videos/popular",
params={
'countryCode': 'US',
'period': '7',
'orderBy': 'views',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/tiktok/videos/popular?countryCode=US&period=7&orderBy=views",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| countryCode | 아니오 | Market: US, JP, VN, TH or ID, the only markets TikTok publishes this board for. Defaults to US. (US | JP | VN | TH | ID) |
| period | 아니오 | Window in days: 7 or 30. Defaults to 7. (7 | 30) |
| orderBy | 아니오 | How TikTok ranks the board: views (the default), engagement, or six_second_views. (views | engagement | six_second_views) |
| limit | 아니오 | How many videos to return, 1-20, default 20. |
TikTok Videos Popular API는 무엇을 돌려주나요
이 엔드포인트의 응답 구조와 필드를 보여 주는 예시예요. 값은 이해를 돕기 위한 것이며 실제 조회 결과는 아니에요.
응답 예시 보기
{
"success": true,
"platform": "tiktok",
"endpoint": "/v1/tiktok/videos/popular",
"data": {
"items": [
{
"post": {
"id": "7637623185378200845",
"url": "https://www.tiktok.com/@linguamarina/video/7637623185378200845",
"content": {
"text": "PDFs in 2016: you send a file. PDFs in 2026: you send an experience. #AdobeAcrobatPartner",
"media_urls": "https://v16m-default.tiktokcdn-us.com/ffcc07a41d17debbb4370d167d69be97/6aa64689/video/tos/useast5/tos-useast5-pve-0068-tx/oguJeAponvOogH25FxWQAOM1RfAGJfRRgf8cIJ/",
"thumbnail_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8GJOFO5A6efHrf6dnvAAkIe7AIRQAwIDJSMEA~tplv-photomode-zoomcover-tcm:720:720.jpeg",
"duration_seconds": null
},
"author": {
"username": "linguamarina",
"display_name": "Silicon Valley Girl",
"avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/57f759b02de679189cf842ebf9341aa7~tplv-tiktokx-cropcenter:300:300.jpeg",
"verified": null
},
"engagement": {
"views": 153672528,
"likes": null,
"comments": null,
"shares": null,
"saves": null
},
"flags": {
"nsfw": null,
"spoiler": null,
"pinned": null,
"deleted": false
},
"published_at": "2026-05-08T20:38:56.000Z",
"ext": {
"author_id": "6844415658239721478",
"author_followers": 3007554,
"trend": {
"rank": 1,
"country_code": "US",
"period_days": 7,
"order_by": "views",
"period_views": 62318158,
"organic_views": 9531351,
"engagement_rate": 0.001632878815192195,
"six_second_view_through_rate": 0.02756890176226899,
"content_tags": []
}
}
},
"computed": {
"engagement_rate": null,
"language": "en",
"content_category": "other",
"estimated_reach": 184407034
}
},
{
"post": {
"id": "7680228073656093966",
"url": "https://www.tiktok.com/@iamcardib/video/7680228073656093966",
"content": {
"text": "Y’all know I don’t play about my @Chipotle! The official Bardi Bowl + the new Chili Lime Chips are officially in the Chipotle app. Get into it!!!!!",
"media_urls": "https://v16m-default.tiktokcdn-us.com/7414aae302c9b68da8a6ab51b6fc7c5f/6aa646b8/video/tos/useast5/tos-useast5-ve-0068c004-tx/osZVRauhqISWETDepBlFk2aEEwDQ9qAOAgfVx8/",
"thumbnail_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oowVAZglfAE8caCaBDRq8tBupEDSFEmO9a5I3e~tplv-photomode-zoomcover-tcm:720:720.jpeg",
"duration_seconds": null
},
"author": {
"username": "iamcardib",
"display_name": "Cardi B",
"avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/dcd32ba414395bcdd66310eea46e9625~tplv-tiktokx-cropcenter:300:300.jpeg",
"verified": null
},
"engagement": {
"views": 131166904,
"likes": null,
"comments": null,
"shares": null,
"saves": null
},
"flags": {
"nsfw": null,
"spoiler": null,
"pinned": null,
"deleted": false
},
"published_at": "2026-08-31T16:07:59.000Z",
"ext": {
"author_id": "7506219246691729454",
"author_followers": 36236761,
"trend": {
"rank": 2,
"country_code": "US",
"period_days": 7,
"order_by": "views",
"period_views": 54048688,
"organic_views": 16137343,
"engagement_rate": 0.008164120468567156,
"six_second_view_through_rate": 0.07433548136286997,
"content_tags": []
}
}
},
"computed": {
"engagement_rate": null,
"language": "en",
"content_category": "other",
"estimated_reach": 157400285
}
}
],
"total": null
},
"credits_used": 27,
"credits_remaining": 9973,
"request_id": "req-a1b2c3d4e5f6"
}문서에 나온 응답 구조를 보여 주는 예시예요. 값은 이해를 돕기 위한 것이며 운영 환경에서 가져온 응답이 아니에요.
TikTok Videos 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 Videos Popular 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 TikTok 데이터를 받아 가세요.
