API Documentation
⌘K
API Key
Get free key GET
/api/1/deals/maM&A Deals
Returns M&A deal announcements parsed from SEC EDGAR merger filings, newest first. Filter by status, date range, or free-text search on company names.
Parameters
6statusstringFilter by deal status (e.g. announced, completed)
fromstringAnnounced on or after (YYYY-MM-DD)
tostringAnnounced on or before (YYYY-MM-DD)
qstringSearch in acquirer/target name or ticker
limitnumberoffsetnumberResponses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/deals/ma?from=2025-01-01&to=2025-12-31&q=Apple&limit=50&offset=0' \
-H 'Accept: application/json'200 Response
{
"data": {
"id": 0,
"acquirerName": "string",
"acquirerTicker": "string",
"targetName": "string",
"targetTicker": "string",
"announcedDate": "2026-06-09T00:00:00.000Z",
"closeDate": "string",
"dealValue": 0,
"dealType": "string",
"status": "announced",
"premiumPct": 0,
"paymentType": "string",
"filingUrl": "string",
"source": "edgar"
},
"total": 0,
"offset": 0,
"limit": 0
}