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 with IDs you can pass to get_entity.
Examples:
{"name": "OpenAI"}
{"name": "Elon Musk", "entity_types": ["PERSON"]}
{"name": "Berlin", "entity_types": ["GPE", "LOC"], "limit": 5}
Use this when: You know the name and want the entity ID or basic info. Use get_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
PERSON, FAC, ORG, GPE, LOC, PRODUCT, WORK_OF_ART, 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).