Skip to main content
GET
/
v1
/
deals
/
ids=
{ids}
Get deals by ids
curl --request GET \
  --url https://api.metal.ai/v1/deals/ids={ids} \
  --header 'x-metal-api-key: <api-key>' \
  --header 'x-metal-client-id: <api-key>'
{
  "data": [
    {
      "id": "665f1c2a9b1e4a0012a3b4c5",
      "name": "Project Atlas",
      "companyId": "<string>",
      "status": "ACTIVE",
      "stage": "DUE_DILIGENCE",
      "externalStatus": "<string>",
      "externalStage": "<string>",
      "acquisitionType": "platform",
      "owners": [
        {
          "id": "<string>",
          "type": "<string>"
        }
      ],
      "sector": "<string>",
      "industry": "<string>",
      "size": 123,
      "notes": "<string>",
      "externalReference": {
        "source": "<string>",
        "id": "<string>"
      }
    }
  ]
}

Authorizations

x-metal-client-id
string
header
required

The Client ID of your API key.

x-metal-api-key
string
header
required

The secret value of your API key.

Path Parameters

ids
string
required

Comma-separated resource ids.

Response

The matching deals.

data
object[]