Find entities by name with fuzzy matching when you know (or partially know) an entity’s name.
Optionally filter by entity type. Returns an array of matching entities, each with an id, name, entity_type, and a description (when available) — use the id to pass to Retrieve Entity for full profiles.
Examples:
GET /v1/entities?name=OpenAI
GET /v1/entities?name=Tim+Cook&entity_types=Person
GET /v1/entities?name=Berlin&entity_types=GPE&entity_types=Location&limit=5
Use this when you know the name and want the entity ID or basic info. Use retrieve_entity with the returned ID for full details. Use knowledge_query for attribute-based filtering instead.
Entity name to search for
1Filter by entity types
Entity, Organization, Company, EducationalInstitution, Person, GPE, Country, CountryRegion, Industry, FinancialMetric, CorporateEvent, Facility, Location, Product, WorkOfArt, Law, Language Maximum number of results
1 <= x <= 100Successful Response
Response containing a list of entities matching the search query.
List of entities matching the search query, ordered by relevance (most relevant first).