get_acquisitions
Retrieve acquisition data for a specific company from Crunchbase. Input a company name or UUID and set a result limit to get details on acquisitions made by or of the company.
Instructions
Get acquisitions made by or of a specific company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_name_or_id | No | Company name or UUID | |
limit | No | Maximum number of results to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"company_name_or_id": {
"description": "Company name or UUID",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (default: 10)",
"type": "number"
}
},
"type": "object"
}