Skip to main content
POST
/
v1
/
deals
/
search
Search deals
curl --request POST \
  --url https://api.metal.ai/v1/deals/search \
  --header 'Content-Type: application/json' \
  --header 'x-metal-api-key: <api-key>' \
  --header 'x-metal-client-id: <api-key>' \
  --data '
{
  "query": "industrial automation suppliers",
  "page": 1,
  "limit": 20
}
'
{
  "data": [
    {
      "id": "665f1c2a9b1e4a0012a3b4c5",
      "name": "Project Atlas",
      "companyId": "<string>",
      "status": "ACTIVE",
      "stage": "DUE_DILIGENCE",
      "externalStatus": "<string>",
      "externalStage": "<string>",
      "owners": [
        {
          "id": "<string>",
          "type": "<string>"
        }
      ],
      "sector": "<string>",
      "industry": "<string>",
      "size": 123,
      "notes": "<string>",
      "externalReference": {
        "source": "<string>",
        "id": "<string>"
      }
    }
  ],
  "metadata": {
    "page": 1,
    "limit": 20,
    "totalCount": 134,
    "totalPages": 7
  }
}

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.

Body

application/json
query
string
required

The search query.

Example:

"industrial automation suppliers"

page
integer
default:1

Page number, starting at 1.

limit
integer
default:20

Results per page.

Response

Ranked deal results.

data
object[]
metadata
object

Pagination details returned by search endpoints.