Get acquisitions by date
Returns acquisitions across all companies, newest first. Each item is the same PublicAcquisition object returned by Get acquisition by ID: every row carries both sides of the deal (the acquirer and the acquiree), each with their Specter company ID and primary domain so you can chain to Get company by ID for either party.
What you need
Nothing beyond your API key — the feed spans every company. Narrow it with acquired_date_after / acquired_date_before, and walk it with page and limit.
Behaviour
- Ordered by acquisition date, newest first, at most 50 results per page.
- Both date bounds are inclusive and each stands alone: send only
acquired_date_afterfor everything since a date, onlyacquired_date_beforefor everything up to one, or both for a window. - Every response carries
X-Total-Count,X-Page,X-Page-Size,X-Total-Pagesand aLinkheader, so you can size a range before paging through it. - A range with no acquisitions returns
200with an empty array, and an empty page is not billed.
What you do next
- Pull either side of the deal. Take
acquirer_company_idoracquiree_company_idto Get company by ID. - Re-read one row. Take
acquisition_idto Get acquisition by ID. - Poll for new deals. Re-run with
acquired_date_afterset to your last poll date to collect only what has been announced since.
Authorizations
Query Parameters
Only return acquisitions dated on or after this date (YYYY-MM-DD, inclusive).
"2026-06-01"
Only return acquisitions dated on or before this date (YYYY-MM-DD, inclusive).
"2026-06-30"
The page number of results to return, base 0, default is 0.
The number of results to return per page (minimum 1, maximum 50, default 50). A page is the unit these endpoints are priced in, so it cannot be widened beyond 50.
1 <= x <= 50Response
A page of acquisitions.
The Specter ID for this acquisition.
"acq_fd583a1b99d5c85635a56283"
The Specter company ID of the acquirer. Use with GET /companies/{companyId} to fetch the full company record.
"6576fa02f5c870dd55a4982a"
The acquirer company's name.
"Uber"
The Specter company ID of the acquiree. Use with GET /companies/{companyId} to fetch the full company record.
"5e3ba36800c8f4c9668e5b8f"
The acquiree company's name.
"Delivery Hero"
The acquirer's primary domain.
"uber.com"
The acquiree's primary domain.
"deliveryhero.com"
The type of deal. One of acquisition, merge, lbo, acquihire, or management_buyout. Null when Specter could not classify the deal.
acquisition, merge, lbo, acquihire, management_buyout "acquisition"
Deal value in USD, if disclosed.
14564220183
Date the acquisition was announced or closed (YYYY-MM-DD).
"2026-07-16"