| Access | Fundraising_unified |
| Tabular model | acquisition-deals: primary key acquisitionDealID |
Endpoints
List Acquisition Deals
One page of rows with per-column filters, sorting and pagination.
Get Acquisition Deal
One row by
acquisitionDealID.Columns
Use theField value in selections, sortBy, and as the base of a filter parameter (Field plus one of its Filters suffixes).
| Field | Type | Filters | Sort | Description |
|---|---|---|---|---|
acquisitionDealID | string | Eq, IsOneOf, IsNotOneOf | The unique identifier of the acquisition deal. (primary key) | |
announcementDate | time | Gt, Gte, Lt, Lte | default | The date the deal was announced. |
fundingDate | time | Gt, Gte, Lt, Lte | yes | The date the deal closed, when it differs from the announcement date. |
transactionAmountUSD | float64 | Gt, Gte, Lt, Lte | yes | The value of the transaction, in US dollars. Null when the amount was not disclosed. |
status | string | Eq, NotEq, IsOneOf, IsNotOneOf | yes | The status of the deal: announced, completed, or canceled. Values are lowercase. |
acquiringEntityID | string | Eq, IsOneOf, IsNotOneOf | The unique identifier of the project, organization, or governing body making the acquisition. | |
acquiringEntityType | string | Eq, IsOneOf | Whether the acquiring entity is a project, an organization, or a governing body. | |
acquiringEntityName | string | Eq, IsOneOf, Contains | yes | The name of the acquiring entity. |
acquiringEntitySlug | string | Eq, IsOneOf | The URL slug of the acquiring entity. | |
acquiringEntityLogoURL | string | The URL of the acquiring entity’s logo. | ||
acquiringEntityIsActive | bool | Eq, NotEq | If true, the acquiring entity is still an active entity. | |
acquiredEntityID | string | Eq, IsOneOf, IsNotOneOf | The unique identifier of the project, organization, or product being acquired. | |
acquiredEntityType | string | Eq, IsOneOf | Whether the acquired entity is a project, an organization, or a product. | |
acquiredEntityName | string | Eq, IsOneOf, Contains | yes | The name of the acquired entity. |
acquiredEntitySlug | string | Eq, IsOneOf | The URL slug of the acquired entity. | |
acquiredEntityLogoURL | string | The URL of the acquired entity’s logo. | ||
acquiredEntityIsActive | bool | Eq, NotEq | If true, the acquired entity is still an active entity. | |
acquiredEntitySector | string | Eq, IsOneOf, IsNotOneOf | The legacy sector classification of the acquired entity. | |
acquiredEntityCategory | string | Eq, IsOneOf, IsNotOneOf | The legacy category classification of the acquired entity. | |
announcementURLs | array_string | The URLs of the announcements covering the deal, primary announcement first. |
Example
curl
curl "https://api.blockworks.com/query/tabular/acquisition-deals?pageSize=3&selections=acquisitionDealID,announcementDate,fundingDate,transactionAmountUSD" \
-H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"