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 retrieve_entity.
Examples:
{"name": "OpenAI"}
{"name": "Elon Musk", "entity_types": ["Person"]}
{"name": "Berlin", "entity_types": ["GPE", "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.
Documentation Index
Fetch the complete documentation index at: https://docs.cala.ai/llms.txt
Use this file to discover all available pages before exploring further.
Entity name to search for
1Filter by entity types
Entity, Animal, Award, Organization, Company, EducationalInstitution, Person, Event, GPE, Country, CountryRegion, Industry, FinancialMetric, Group, CorporateEvent, Facility, Location, Organism, Plant, Product, Sanction, WorkOfArt, Law, Language, Exchange 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).