Search verified knowledge using structured dot-notation query syntax for filtering entities by attributes.
Returns a structured array of matching results plus entities. The input field is called “input” (not “query”).
Examples:
{"input": "startups.location=Spain.funding>10M.funding<=50M"}
{"input": "companies.industry=fintech.founded_year>=2020"}
{"input": "people.role=CEO.company.industry=AI"}
Use this when: You need to filter/search entities by specific attributes (location, funding, industry, year, etc.). For free-text questions use knowledge_search. To look up a known entity by name use entity_search.
"startups.location=Spain.funding>10M.funding<50M"
Successful Response
Response in case of a successful structured query.
A list of structured results for the query. Shape and schema will be determined by the query.
[
{
"co_founders": "Elisenda Bou-Balust and Issey Masuda Mora",
"description": "Develops explainable-AI data pipelines that enable corporations to fuse internal data with public sources while maintaining audit trails",
"founded": "2025",
"location": "Barcelona",
"name": "Cala AI",
"team_size": "20"
}
]Entities recognized in the answer.