Trend detection
Surface what is climbing right now: trending posts, rising creators and hashtags, then pull the posts driving them without changing keys or schemas.
The recipe
The calls, in order. Tap a platform to see its endpoint and parameters.
- 1
- 2
- 3
What it costs
72credits
Trending posts on TikTok, Instagram and YouTube, checked every hour for a day.
Calculated from the live price list. Failed calls are refunded.
In code
javascript
const trending = await fetch(`https://api.crawlfeed.dev/v1/tiktok/trending`, { headers: { Authorization: `Bearer ${process.env.CRAWLFEED_KEY}` } }).then((r) => r.json());
const topTags = trending.data.flatMap((p) => p.hashtags);Questions
How fresh is trending data?
Searches and trending feeds are cached for at most 5 minutes; meta.data_age_s tells you the age of every response.