GET
/tiktok/get-trending-feedGet Trending Feed
Get the current trending/For You feed from TikTok. Returns the hottest videos right now with full engagement data.
Quick Start
cURL
curl "https://api.creatorcrawl.com/v1/tiktok/get-trending-feed" \
-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": "This went viral overnight",
"author": {
"uniqueId": "viral_creator"
},
"stats": {
"playCount": 45000000
}
}
]
}Every request costs 1 credit. Response data is live -- never cached.
Use Cases
Trend spotting
Catch trending content as it happens to inform your content strategy.
Content inspiration
See what formats and topics are resonating with audiences right now.
Real-time dashboards
Power live dashboards showing the current state of TikTok trends.
Code Examples
Python
import requests
resp = requests.get(
"https://api.creatorcrawl.com/v1/tiktok/get-trending-feed",
headers={"x-api-key": "YOUR_API_KEY"},
)
for video in resp.json()["videos"][:5]:
print(f"{video['author']['uniqueId']}: {video['desc'][:50]}")JavaScript
const resp = await fetch(
"https://api.creatorcrawl.com/v1/tiktok/get-trending-feed",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
)
const { videos } = await resp.json()
videos.slice(0, 5).forEach(v => console.log(`${v.author.uniqueId}: ${v.desc.slice(0, 50)}`))