You have creators that work. Now you need more like them. This recipe uses the lookalike endpoint with weighted seeds to find similar creators, filtered to your requirements, and scored for campaign fit.The key insight: if you have performance data from previous campaigns, encode it in the weights. Your best-performing creator gets the highest weight, and the API finds more creators who skew toward that profile.
No performance data? Start with equal weights (1.0). You can also manually weight based on gut feel — give your favorite seed a 1.0 and the others less.
Lookalikes find similar creators — but similar to your past performers doesn’t automatically mean they’re right for your next campaign. If the campaign is different, score the results:
const candidateIds = similar.data.map((r) => r.creator.id);const scored = await client.creators.match({ creator_ids: candidateIds, intent: { query: 'Launch campaign for a new organic snack brand', context: 'We need creators who feel authentic, not overly polished. ' + 'The product is a healthy snack bar. Target audience is active ' + 'millennials who care about ingredients.', },});const goodFits = scored.data .filter((r) => r.match.decision === 'good') .sort((a, b) => b.match.score - a.match.score);console.log(`${goodFits.length} of ${candidateIds.length} passed campaign fit`);
The blend ratio depends on your use case. If you’re expanding a proven formula, lean toward similarity (0.7 / 0.3). If the new campaign is different, lean toward campaign fit (0.3 / 0.7).
Feed those numbers back as weights in the next lookalike search
Repeat
Each iteration refines what “similar to our best creators” means. The weights encode accumulated campaign knowledge that no amount of manual research can replicate.
Don’t over-seed. 3-5 seeds is usually enough. More seeds dilute the signal unless each one genuinely represents a different trait you want.
Vary the weights meaningfully. If all your seeds have weight 1.0, you’re not using the feature. Even rough estimates (1.0, 0.7, 0.3) are better than equal weights.
Filter aggressively. Lookalike search returns creators who are stylistically similar — they may not meet your follower or engagement requirements. Filters prevent you from scoring creators you’d never work with.