Influencer discovery

Find creators by keyword or hashtag, check who they reach and how they perform, and shortlist them before you spend a budget.

The recipe

The calls, in order. Tap a platform to see its endpoint and parameters.

  1. 1

    Search profiles

    1 credit per call

    Find creators by keyword.

    GET/v1/{platform}/search/profilesProfile[]
  2. 2

    Hashtag

    1 credit per call

    Find who posts under a hashtag.

    GET/v1/{platform}/hashtagPost[]
  3. 3

    Profile

    1–2 credits per call

    Pull follower counts and bios for the shortlist.

    GET/v1/{platform}/profileProfile
  4. 4

    Audience

    26 credits per call

    Confirm which countries their audience is in (TikTok).

    GET/v1/{platform}/audienceAudience
What it costs
136credits

One keyword search on TikTok, then profiles and audience for 5 creators.

Calculated from the live price list. Failed calls are refunded.

In code

javascript
const found = await fetch(`https://api.crawlfeed.dev/v1/tiktok/search/profiles?q=${encodeURIComponent('home coffee')}`, { headers: { Authorization: `Bearer ${process.env.CRAWLFEED_KEY}` } }).then((r) => r.json());
for (const creator of found.data.slice(0, 5)) {
  const audience = await fetch(`https://api.crawlfeed.dev/v1/tiktok/audience?handle=${creator.handle}`, { headers: { Authorization: `Bearer ${process.env.CRAWLFEED_KEY}` } }).then((r) => r.json());
  console.log(creator.handle, creator.followers, audience.data.countries[0]);
}

Try it free first

Questions

Why is TikTok audience more expensive?

Audience data costs more to obtain, so it is priced on its own. The recipe shows the real price per call.

Related recipes