ParheliaWeb

Acquisitions API

Real‑time M&A data for investment bankers, VCs, and corporate strategy teams.

Base URL: https://parheliaweb.com

All requests must include an API key in the x-api-key header. Responses are in JSON.

New? Head over to the home page and click Subscribe to get your API key instantly.

💶 Pricing & Currency

All prices are in Euros (EUR). We use Stripe for secure payment processing.

EU-Based: ParheliaWeb is built and hosted in the Netherlands. GDPR compliant.

🔐 Authentication

x-api-key: YOUR_API_KEY

📡 Rate Limits & Access

PlanRate LimitData AccessFieldsSupport
Free5 requests / minuteLast 30 days onlyBasic (buyer, target, amount, type, date, url)
Pro (€29/month)5 requests / minuteFull dataset (up to 10 years)+ deal status, currency, sector, rationale, cash/stock, distressed, tickerEmail support

📦 Endpoint: Get Acquisitions

GET /v1/acquisitions

Returns the most recent acquisitions and mergers. Currently tracking 60+ acquisitions across 6 sources.

Query Parameters

ParameterTypeDefaultDescription
max_age_daysinteger365Maximum age of data in days. Free tier limited to 30 days.
max_recordsinteger500Maximum records returned. Range: 1-5000.

Example Response (Pro tier)

{
  "user_tier": "pro",
  "count": 1,
  "max_age_days": 365,
  "results": [{
    "company_name": "Snowflake",
    "acquired_company": "Natoma",
    "deal_amount": "$6 billion",
    "deal_type": "Acquisition",
    "announcement_date": "2026-05-27",
    "source_url": "https://pulse2.com/...",
    "source_status": "active",
    "deal_status": "Announced",
    "currency": "USD",
    "sector": "Enterprise AI/Software",
    "acquisition_rationale": "AI strategy",
    "is_all_cash": false,
    "is_all_stock": true,
    "is_distressed": false,
    "acquirer_ticker": "SNOW"
  }]
}

Response Fields

FieldTypeDescription
user_tierstringYour subscription tier
countintegerNumber of results
max_age_daysintegerMax age filter applied
last_crawledstringISO 8601 timestamp of last crawler run
company_namestringAcquiring company (buyer)
acquired_companystring|nullCompany being acquired (target)
deal_amountstring|nullDeal value
deal_typestringAcquisition or Merger
announcement_datestringDate of announcement
source_urlstringURL of original source
source_statusstring"active" or "archived"
deal_statusstring|nullPro tier: Announced, Completed, or Blocked
currencystring|nullPro tier: Currency of the deal
sectorstring|nullPro tier: Industry sector
acquisition_rationalestring|nullPro tier: Strategic reason
is_all_cashbooleanPro tier: True if all-cash deal
is_all_stockbooleanPro tier: True if all-stock deal
is_distressedbooleanPro tier: True if distressed acquisition
acquirer_tickerstring|nullPro tier: Stock ticker of acquirer
AI-Verified Data: Every record is cross-checked by DeepSeek AI. Pro tier fields are extracted from the full article text.

💻 Code Snippets

Python

import requests
headers = {"x-api-key": "YOUR_API_KEY"}
resp = requests.get("https://parheliaweb.com/v1/acquisitions", headers=headers)
for item in resp.json()["results"]:
    print(item["company_name"], "acquired", item["acquired_company"])

cURL

curl -H "x-api-key: YOUR_API_KEY" https://parheliaweb.com/v1/acquisitions

📬 Support

Email us at info@parheliaweb.com.

Acquisitions API by ParheliaWeb · Built in the Netherlands · Terms · Privacy · Contact

AI verification powered by DeepSeek