particle_entity_resolve
Resolve any named thing — person, company, place, or other entity — by free-text name in one union search. Each candidate carries a type and the canonical slug for that type:
person: the canonical person slug. Feed it intoparticle_person_get, everyperson_slugparameter (particle_podcast_find_mentions,particle_podcast_search_transcripts,particle_podcast_list_episodes), orparticle_podcast_get_guest'sguest_slug.company: the canonical company slug. Feed it intoparticle_company_getand everycompany_slugparameter.place/other: a bare entity slug. Feed it into theentity_slugparameter onparticle_podcast_find_mentions,particle_podcast_search_transcripts, andparticle_podcast_list_episodesto filter by that entity.
Use this first whenever you only have a name and don't know what kind of thing it names. If you already know it's a person, particle_person_resolve ranks people only; for companies with a known ticker, domain, CIK, or QID, particle_company_resolve has more identifier surface.
For bulk resolution, pass a comma-separated query (e.g. "sam altman, nvidia, davos") — each name is resolved independently in a single call and limit applies per query.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum candidates per query (1-10, default 5). | |
| query | Yes | Free-text name(s) of a person, organization, place, or company to resolve (e.g. 'sam altman', 'nvidia'). Case-insensitive. Comma-separated for bulk lookup (e.g. 'sam altman, kara swisher, marc andreessen') — each query is resolved independently and grouped in the response. |