search_rounds
Search European tech funding rounds (cited, EUR-normalized at the ECB rate on the round date). Returns newest first with a `nextCursor` for pagination.
Parameters8
| country | string | optional | Country filter, e.g. "UK", "Germany", "France", "Türkiye" |
| stage | string | optional | Stage filter, e.g. "Seed", "Series A", "Debt", "Grant" |
| sector | string | optional | Sector filter (canonical), e.g. "AI", "Fintech", "Healthtech", "Software", "Cleantech", "Energy" |
| minAmountEur | number | optional | Only rounds of at least this many EUR |
| from | string | optional | Earliest round date, YYYY-MM-DD |
| to | string | optional | Latest round date, YYYY-MM-DD |
| limit | number | optional | Max results (default 25, cap 100) |
| after | string | optional | Opaque nextCursor from a previous call |
Raw schema
{
"type": "object",
"properties": {
"country": {
"description": "Country filter, e.g. \"UK\", \"Germany\", \"France\", \"Türkiye\"",
"type": "string"
},
"stage": {
"description": "Stage filter, e.g. \"Seed\", \"Series A\", \"Debt\", \"Grant\"",
"type": "string"
},
"sector": {
"description": "Sector filter (canonical), e.g. \"AI\", \"Fintech\", \"Healthtech\", \"Software\", \"Cleantech\", \"Energy\"",
"type": "string"
},
"minAmountEur": {
"description": "Only rounds of at least this many EUR",
"type": "number"
},
"from": {
"description": "Earliest round date, YYYY-MM-DD",
"type": "string"
},
"to": {
"description": "Latest round date, YYYY-MM-DD",
"type": "string"
},
"limit": {
"description": "Max results (default 25, cap 100)",
"type": "number",
"minimum": 1,
"maximum": 100
},
"after": {
"description": "Opaque nextCursor from a previous call",
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}