Fetch the full record for a single creator by ID or exact platform username.
Use this when you already have either:
- a canonical creator UUID returned by `search_creators`,
`semantic_search_creators`, `autocomplete_creators`, or
`find_lookalike_creators`; or
- an exact platform+username pair such as platform "instagram" and username
"niickjackson".
Pass `include: ['profiles']` to also receive the creator's social profile
summaries when using a creator UUID. For platform+username inputs, this tool resolves
through the profile endpoint and returns the profile record plus the underlying creator
record, so you already get the matched profile context.
Examples:
- User: "Get creator 123e4567-e89b-12d3-a456-426614174000" -> call with id.
- User: "Get @niickjackson on Instagram" -> call with platform "instagram" and
username "niickjackson", or use `get_profile` if profile metrics are the main need.
- User: "Tell me about @niickjackson and include his profiles" -> use platform
"instagram" and username "niickjackson"; then use `get_profile`/`get_posts` for
platform-specific metrics and content if needed.
Use `lookup_profiles` for batch exact profile lookups.
Connector