GET /acquisition/details

Acquisition Details

Get detailed information about a specific Crunchbase acquisition including acquirer, acquiree, deal type, status, terms, and press coverage.

Crunchbase Data API

Retrieve complete details for a specific acquisition by its slug. Returns the acquirer and acquiree organizations with descriptions, acquisition type, deal status, terms, disposition of the acquired company, and recent press references. Use this after discovering acquisitions via acquisition-search or company-financials.

HTTP Request

1
GET /acquisition/details

Parameters

ParameterTypeRequiredDefaultDescription
idstringYesAcquisition slug (e.g., general-motors-acquires-reliance-motor-car-company--71c669ea) or UUID
freshbooleanNofalseSkip cache and fetch fresh data (billed as non-cached request)
max_age_secondsintegerNoReturn fresh fetch if cached record is older than this many seconds
fieldsstringNoComma-separated allow-list of top-level fields to include

Response

Example Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
  "status": true,
  "request_id": "1c67fded-d100-b8dc-f397-cb1a3b10",
  "data": {
    "name": "Reliance Motor Car Company acquired by General Motors",
    "slug": "general-motors-acquires-reliance-motor-car-company--71c669ea",
    "uuid": "71c669ea-43cb-23a2-a158-71bb06cf785b",
    "image": "https://images.crunchbase.com/image/upload/v1465390856/yz07glmgyhwzacacrdrr.jpg",
    "type": "acquisition",
    "acquisition_type": "acquisition",
    "status": "complete",
    "disposition_of_acquired": null,
    "terms": null,
    "acquirer": {
      "uuid": "5087a047-80c5-4aa3-dfdf-30dd8ac88b5e",
      "slug": "general-motors",
      "name": "General Motors",
      "type": "organization",
      "image": "https://images.crunchbase.com/image/upload/hmmrtltnb5pke51rxlvg",
      "short_description": "General Motors is an automotive company that designs, produces, markets, and distributes vehicles and vehicle parts."
    },
    "acquiree": {
      "uuid": "65cbc73a-6584-ab45-db78-5939b7938024",
      "slug": "reliance-motor-car-company",
      "name": "Reliance Motor Car Company",
      "type": "organization",
      "image": "https://images.crunchbase.com/image/upload/v1465390856/yz07glmgyhwzacacrdrr.jpg",
      "short_description": "Reliance Motor Car Company is a manufacturer of motors."
    },
    "num_timeline_entries": 1,
    "recent_press": [
      {
        "title": "Reliance Motor Car Company",
        "url": "https://history.gmheritagecenter.com/wiki/index.php/Reliance_Motor_Car_Company",
        "posted_on": "2016-05-04",
        "publisher": null,
        "author": null,
        "thumbnail_url": null
      }
      // ... more items
    ]
  },
  "_meta": {
    "is_cached": false,
    "cached_at": 1778020041.2434206,
    "cached_at_iso": "2026-05-05T22:27:21Z"
  },
  "request_params": {
    "id": "general-motors-acquires-reliance-motor-car-company--71c669ea",
    "fresh": "false"
  }
}

Response Fields

FieldTypeDescription
statusbooleanWhether the request was successful
request_idstringUnique identifier for the request
data.namestringDisplay name of the acquisition
data.slugstringURL slug identifier
data.uuidstringCrunchbase UUID of the acquisition
data.imagestringURL to the acquiree’s logo
data.typestringEntity type, always "acquisition"
data.acquisition_typestringType of deal (e.g., acquisition, merger, acqui-hire)
data.statusstringDeal status (e.g., complete, pending)
data.disposition_of_acquiredstring|nullWhat happened to the acquired company (e.g., merged, shut_down)
data.termsstring|nullDeal terms (e.g., cash, stock, cash_and_stock)
data.acquirerobjectThe acquiring organization
data.acquirer.uuidstringAcquirer UUID
data.acquirer.slugstringAcquirer slug — use in company-details
data.acquirer.namestringAcquirer name
data.acquirer.typestringEntity type, always "organization"
data.acquirer.imagestringURL to the acquirer’s logo
data.acquirer.short_descriptionstringBrief description of the acquirer
data.acquireeobjectThe acquired organization
data.acquiree.uuidstringAcquiree UUID
data.acquiree.slugstringAcquiree slug — use in company-details
data.acquiree.namestringAcquiree name
data.acquiree.typestringEntity type, always "organization"
data.acquiree.imagestringURL to the acquiree’s logo
data.acquiree.short_descriptionstringBrief description of the acquiree
data.num_timeline_entriesintegerNumber of timeline/press entries for this acquisition
data.recent_pressarrayRecent press references about this acquisition
data.recent_press[].titlestringArticle title
data.recent_press[].urlstringURL to the article
data.recent_press[].posted_onstringPublication date (YYYY-MM-DD)
data.recent_press[].publisherstring|nullPublisher name
data.recent_press[].authorstring|nullAuthor name
data.recent_press[].thumbnail_urlstring|nullURL to article thumbnail image
_meta.is_cachedbooleanWhether this response came from cache
_meta.cached_atfloatUnix timestamp of when data was cached
_meta.cached_at_isostringISO 8601 timestamp of cache time
request_paramsobjectEcho of the parameters sent in the request

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import requests

url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/acquisition/details"

params = {
    "id": "general-motors-acquires-reliance-motor-car-company--71c669ea",
    "fresh": "true"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
result = response.json()

if result["data"]:
    acq = result["data"]
    print(f"Deal: {acq['name']}")
    print(f"Type: {acq['acquisition_type']}")
    print(f"Status: {acq['status']}")
    print(f"Acquirer: {acq['acquirer']['name']}")
    print(f"  {acq['acquirer']['short_description']}")
    print(f"Acquiree: {acq['acquiree']['name']}")
    print(f"  {acq['acquiree']['short_description']}")
    if acq["terms"]:
        print(f"Terms: {acq['terms']}")
else:
    print(f"Error: {result['error']['message']}")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/acquisition/details";

const params = new URLSearchParams({
  id: "general-motors-acquires-reliance-motor-car-company--71c669ea",
  fresh: "true",
});

const response = await fetch(`${url}?${params}`, {
  method: "GET",
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com",
  },
});

const result = await response.json();

if (result.data) {
  const acq = result.data;
  console.log(`Deal: ${acq.name}`);
  console.log(`Type: ${acq.acquisition_type} | Status: ${acq.status}`);
  console.log(`Acquirer: ${acq.acquirer.name}`);
  console.log(`Acquiree: ${acq.acquiree.name}`);
  if (acq.terms) console.log(`Terms: ${acq.terms}`);
} else {
  console.log(`Error: ${result.error.message}`);
}
1
2
3
4
5
curl -G "https://crunchbase-extractor-full-api3.p.rapidapi.com/acquisition/details" \
  --data-urlencode "id=general-motors-acquires-reliance-motor-car-company--71c669ea" \
  --data-urlencode "fresh=true" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: crunchbase-extractor-full-api3.p.rapidapi.com"
Start building today

Get your API key and make your first request in under a minute.

Get Your API Key on RapidAPI