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. 1

    Trending

    1 credit per call

    The posts trending right now.

    GET/v1/{platform}/trendingPost[]
  2. 2

    Trending profiles

    1 credit per call

    The creators rising right now.

    GET/v1/{platform}/trending/profilesProfile[]
  3. 3

    Hashtag

    1 credit per call

    The posts under a hashtag you want to follow.

    GET/v1/{platform}/hashtagPost[]
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.

Related recipes