GET
/
funding
/
v1
/
mergers-and-acquisitions
GetAcquisitionDeals
curl --request GET \
  --url https://api.messari.io/funding/v1/mergers-and-acquisitions \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "acquiredEntity": {
        "id": "<string>",
        "name": "<string>",
        "organization": {
          "category": "<string>",
          "description": "<string>",
          "foundedDate": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "sector": "<string>",
          "tags": [
            "<string>"
          ]
        },
        "person": {
          "id": "<string>",
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "title": "<string>"
        },
        "project": {
          "background": "<string>",
          "category": "<string>",
          "foundedDate": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "organizations": [
            "<string>"
          ],
          "overview": "<string>",
          "primaryAsset": {
            "category": "<string>",
            "id": "aSDinaTvuI8gbWludGxpZnk=",
            "name": "<string>",
            "rank": 123,
            "sector": "<string>",
            "serialId": 123,
            "slug": "<string>",
            "symbol": "<string>",
            "tags": [
              "<string>"
            ]
          },
          "secondaryAssets": [
            "<string>"
          ],
          "sector": "<string>",
          "tags": [
            "<string>"
          ]
        },
        "type": "<string>"
      },
      "acquiringEntity": {
        "id": "<string>",
        "name": "<string>",
        "organization": {
          "category": "<string>",
          "description": "<string>",
          "foundedDate": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "sector": "<string>",
          "tags": [
            "<string>"
          ]
        },
        "person": {
          "id": "<string>",
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "title": "<string>"
        },
        "project": {
          "background": "<string>",
          "category": "<string>",
          "foundedDate": "2023-11-07T05:31:56Z",
          "id": "<string>",
          "links": [
            {
              "name": "<string>",
              "type": "<string>",
              "url": "<string>"
            }
          ],
          "location": "<string>",
          "name": "<string>",
          "organizations": [
            "<string>"
          ],
          "overview": "<string>",
          "primaryAsset": {
            "category": "<string>",
            "id": "aSDinaTvuI8gbWludGxpZnk=",
            "name": "<string>",
            "rank": 123,
            "sector": "<string>",
            "serialId": 123,
            "slug": "<string>",
            "symbol": "<string>",
            "tags": [
              "<string>"
            ]
          },
          "secondaryAssets": [
            "<string>"
          ],
          "sector": "<string>",
          "tags": [
            "<string>"
          ]
        },
        "type": "<string>"
      },
      "announcementDate": "2023-11-07T05:31:56Z",
      "announcements": [
        {
          "url": "<string>"
        }
      ],
      "id": "<string>",
      "status": "Announced",
      "transactionAmountUSD": 123
    }
  ],
  "error": "<string>",
  "metadata": {
    "limit": 123,
    "page": 123,
    "totalPages": 123,
    "totalRows": 123
  }
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

limit
integer
page
integer
acquiringEntityId
string[]

Comma-separated list of acquiring entity (projects, organizations) uuids.

acquiredEntityId
string[]

Comma-separated list of acquired entity (projects, organizations) uuids.

transactionAmountMin
number

Filter by minimum transaction amount in USD. Will return deals which have transaction amount greater than the specified amount.

transactionAmountMax
number

Filter by maximum transaction amount in USD. Will return deals which have transaction amount less than the specified amount.

announcedBefore
string<date-time>

Filter by deals announced before the specified date.

announcedAfter
string<date-time>

Filter by deals announced after the specified date.

Response

200
application/json

Default response

The response is of type object.