Acquisitions
M&A records in the knowledge graph, with amounts, parties, and time series.
Acquisition facts are structured M&A events: acquirer, acquiree, date, type, and amount.
Endpoints:
POST /facts/acquisitions/search— playgroundPOST /facts/acquisitions/time-series— playground
Typical Questions
- Is the market consolidating around this trend?
- Are acquisitions becoming larger or more frequent?
- Which exact deals are driving movement?
Type-specific filters
On top of the shared fact fields:
topicLink—acquirer,acquiree, orboth(default)minValue/maxValue— deal amountacquisitionTypes—acquisition,merge,acquihire,leveraged_buyout,management_buyoutacquirerEmployeesCounts/acquireeEmployeesCountssortColumn—acquired_on(default),amount,acquirer,acquiree, orcertainty
Request Patterns
Search
{
"topicIds": ["11111111-1111-1111-1111-111111111111"],
"topicLink": "acquiree",
"acquisitionTypes": ["acquisition", "merge"],
"start": "2020-01-01",
"end": "2024-12-31",
"take": 25,
"sortColumn": "acquired_on",
"sortDirection": "desc"
}Time series
{
"topicIds": ["11111111-1111-1111-1111-111111111111"],
"resolution": "year",
"start": "2015-01-01",
"end": "2024-12-31"
}Response Notes
Each acquisition includes id, acquisitionType, acquiredOn, amount, acquirer, acquiree, and certainty. Time series returns labels, counts, and amounts.