autocomplete_creators
Resolve partial creator handles or names to canonical IDs quickly. Use for fast typeahead-style lookup when a user types a partial name or handle.
Instructions
Autocomplete creator names, usernames, or display names from partial input.
Use this for fast lookup when the user types a partial handle or name and you need to
resolve it to canonical creator IDs (e.g., "find @cris" or "who's that fitness coach
called Jane?"). Cheap and fast — prefer over search_creators for handle-style
queries where the user already knows roughly who they want.
Use get_profile instead when the user gives an exact platform+username pair. Use
search_creators for the same fuzzy creator lookup behavior with a less typeahead-
specific name. Use semantic_search_creators only for discovery by topic, niche,
audience, geography, or content style, not for resolving a known creator.
Examples:
User: "Who is that fitness coach called Jane?" -> use this tool.
User: "Find @cris..." -> use this tool to resolve the partial handle.
User: "Pull @niickjackson on Instagram" -> use
get_profile, not this tool.
Returns a short list of matching creators with their IDs, platforms, and display names.
Use the IDs returned here as input to get_creator, find_lookalike_creators, or
match_creators for downstream operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search query (min 2 characters) | |
| platform | No | Filter by platform | |
| limit | No | Maximum results to return | |
| scope | No | Which platforms to include in results | all_platforms |
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 |