Investments
Funding rounds in the knowledge graph, with amounts, parties, and time series.
Investment facts are structured funding events: investors, investee, announced date, type, and amount.
Endpoints:
POST /facts/investments/search— playgroundPOST /facts/investments/time-series— playground
Typical Questions
- Is investor attention accelerating for this trend?
- What funding types and company sizes appear?
- Which concrete rounds explain the curve?
Type-specific filters
On top of the shared fact fields:
topicLink—investor,investee, orboth(default)minValue/maxValue— deal amountinvestmentTypes— for exampleseed,series_a,grantinvestorEmployeesCounts/investeeEmployeesCountssortColumn—announced_on(default),amount,investee, orcertainty
Request Patterns
Search
{
"topicIds": ["11111111-1111-1111-1111-111111111111"],
"topicLink": "investee",
"investmentTypes": ["seed", "series_a"],
"minValue": 1000000,
"start": "2022-01-01",
"end": "2024-12-31",
"take": 25,
"sortColumn": "announced_on",
"sortDirection": "desc"
}Time series
{
"topicIds": ["11111111-1111-1111-1111-111111111111"],
"resolution": "quarter",
"start": "2020-01-01",
"end": "2024-12-31"
}Response Notes
Each investment includes id, investmentType, announcedOn, amount, investors, investee, and certainty. Time series returns labels, counts, and amounts.