GET
/tiktok/videos/popularGet Popular Videos
Get the most popular TikTok videos right now. Returns top-performing videos with view counts, likes, and creator info.
Quick Start
cURL
curl "https://api.creatorcrawl.com/v1/tiktok/videos/popular" \
-H "x-api-key: YOUR_API_KEY"Parameters
This endpoint takes no parameters. Just call it with your API key.
Response
JSON Response
{
"videos": [
{
"id": "7345678901234567890",
"desc": "Most liked video today",
"stats": {
"playCount": 89000000,
"diggCount": 12000000
}
}
]
}Every request costs 1 credit. Response data is live -- never cached.
Use Cases
Viral content tracking
Monitor the most popular content on TikTok to understand what goes viral.
Benchmark analysis
Compare your content performance against the platform's top performers.
Content aggregation
Build curated feeds of the best TikTok content for your audience.
Code Examples
Python
import requests
resp = requests.get(
"https://api.creatorcrawl.com/v1/tiktok/videos/popular",
headers={"x-api-key": "YOUR_API_KEY"},
)
for video in resp.json()["videos"]:
print(f"{video['stats']['playCount']} views - {video['desc'][:40]}")JavaScript
const resp = await fetch(
"https://api.creatorcrawl.com/v1/tiktok/videos/popular",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
)
const { videos } = await resp.json()
videos.forEach(v => console.log(`${v.stats.playCount} views - ${v.desc.slice(0, 40)}`))