API Documentation

⌘K
GET/api/1/deals/ma/{ticker}

M&A Deals by Ticker

Returns M&A deal announcements where the given ticker appears as acquirer or target

Parameters

1
tickerstringrequired
path

Ticker symbol (e.g. NUVL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/deals/ma/AAPL' \
  -H 'Accept: application/json'
200 Response
[
  {
  "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"
}
]