Query
Get structured, typed JSON rows plus matching entities from Cala’s knowledge base.
Accepts either a Cala QL expression or a natural-language question as input — both produce the same structured response shape.
Examples:
{"input": "startups.location=Spain.funding>10M.funding<=50M"}
{"input": "companies.industry=fintech.founded_year>=2020"}
{"input": "people.role=CEO.company.industry=AI"}
{"input": "What are the biggest AI startups in Europe by funding?"}
Use this when you want structured, tabular data for programmatic use. Use knowledge_search when you want a natural-language answer instead. To look up a known entity by name use entity_search.
Authorizations
Body
Response
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.
[
{
"company": "Amenitiz",
"funding_amount": "€38.9M",
"round_type": "Series B",
"sector": "Hospitality SaaS",
"year": 2025
},
{
"company": "H2SITE",
"funding_amount": "€36M ($37.2M)",
"round_type": "Series B",
"sector": "Hydrogen Energy",
"year": 2025
},
{
"company": "Fracttal",
"funding_amount": "€29.8M ($35M)",
"round_type": "Series B",
"sector": "AI Maintenance",
"year": 2026
}
]Entities identified in the query response.