Lookalikes
Lookalike search finds creators who resemble a set of . You provide one or more examples of what you’re looking for, and the API returns ranked results based on content themes, audience overlap, posting style, and engagement patterns. This is useful when you have creators that work and want to find more like them — or when you need to replace a creator who declined and want someone with a similar profile.How It Works
- You provide 1-10 seed creators (by ID or platform + username)
- Optionally weight each seed to control how much it influences results
- The API analyzes content, audience, and style similarities
- You get back ranked results with similarity scores and human-readable shared traits
Seeds
A seed is a reference creator. You can identify seeds two ways:Weighting
Weights control how much each seed influences the results. They range from 0 to 1, with 1.0 as the default.Using Performance Data as Weights
If you have campaign performance data (ROI, conversion rates, engagement), turn it into weights. Your best-performing creator gets weight 1.0, and others scale relative to that. For example, if you ran a campaign with three creators:| Creator | Campaign ROI | Weight |
|---|---|---|
| @top_performer | 4.2x | 1.0 |
| @decent_creator | 2.1x | 0.5 |
| @niche_pick | 1.3x | 0.3 |
Filters
Apply the same filters available on search to narrow lookalike results:| Filter | Type | Description |
|---|---|---|
followers.min / followers.max | integer | Follower count range |
engagement_rate.min / engagement_rate.max | number | Engagement rate as percentage (2.0 = 2%) |
verified | boolean | Only verified accounts |
Response
Each result includes a similarity score and shared traits explaining the match:similarity.score ranges from 0 to 1. Scores above 0.8 typically indicate strong overlap. The shared_traits list explains what the seed and result have in common — useful for displaying to end users or for your own review.
Pagination
Lookalike uses cursor pagination. Passnext_cursor from the response to fetch the next page:
has_more is false. See the Pagination guide for patterns.
Pricing
Lookalike is billed per creator returned: 1.5 per creator ($0.015). No base fee. See Pricing for the full table.Limits
| Parameter | Min | Max | Default |
|---|---|---|---|
| Seeds | 1 | 10 | — |
| Weight per seed | 0 | 1 | 1.0 |
| Limit (results) | 1 | 100 | 25 |
Implementation Advice
- Start with one seed to calibrate. Add more seeds once you understand what the single-seed results look like.
- Use weights to encode knowledge. If you know one creator drives better results than another, the weights should reflect that. Don’t default everything to 1.0 if you have data.
- Combine with match scoring. Run lookalike to expand your list, then pass the results through
POST /v1/creators/matchwith your campaign brief to filter for actual campaign fit. Lookalikes find similar creators — match scoring tells you if they’re a good fit for this specific campaign.