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
- 2
- 3
- 4
Audience
26 credits per callConfirm which countries their audience is in (TikTok).
GET/v1/{platform}/audience→Audience
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.