find_lookalike_creators
Find creators similar to known seed creators by blending profile, visual style, and fact embeddings. Specify seeds by UUID or platform username to receive a ranked list of lookalikes with optional follower and engagement filters.
Instructions
Find creators SIMILAR to one or more seed creators.
Use this when the user already knows a creator they like and wants more like them (e.g., "find creators like @therock", "find more creators like these three I just booked"). Seeds are blended via creator-profile + visual-style + fact embeddings to surface similar accounts.
Seeds are passed in seed_creator_ids (canonical UUIDs) and/or seed_profiles
(platform + username; resolve handles via autocomplete_creators first if needed).
Returns a ranked list of similar creators with scores. limit caps results
(default 25, max 100). Use the flat follower, engagement-rate, and verified fields
to constrain results.
Use semantic_search_creators instead when you have a topic/niche but no seed.
Use match_creators when you have specific candidates and want to score their fit
against a brief.
Examples:
User: "Find creators like @niickjackson on Instagram" -> use this tool with
seed_profiles: [{ platform: "instagram", username: "niickjackson" }].User: "Find news creators with 1M+ followers" -> use
semantic_search_creators, not this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| seed_creator_ids | No | Seed creators identified by canonical Influship creator UUID. | |
| seed_profiles | No | Seed creators identified by platform and username. | |
| limit | No | Maximum results to return. | |
| cursor | No | Pagination cursor from a previous response. | |
| min_followers | No | Minimum follower count. | |
| max_followers | No | Maximum follower count. | |
| min_engagement_rate | No | Minimum engagement rate as a percentage from 0 to 100. | |
| max_engagement_rate | No | Maximum engagement rate as a percentage from 0 to 100. | |
| verified | No | When set, only return verified or unverified creators. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| results | No | ||
| count | No | ||
| ok | No | ||
| not_found | No | ||
| has_more | No | ||
| next_cursor | No | ||
| suggested_followups | No |