Database
POST
/database/companies/enrich

Full database record for one company (headcount and growth, funding, revenue estimate, hiring openings) from its website domain (preferred), LinkedIn URL or name. Consumes workspace AI credits.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings → API & Webhooks.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/database/companies/enrich" \  -H "Content-Type: application/json" \  -d '{    "domain": "stripe.com"  }'
{  "data": {    "id": 0,    "name": "string",    "domain": "string",    "website": "string",    "linkedinUrl": "string",    "description": "string",    "companyType": "string",    "yearFounded": 0,    "industry": "string",    "industries": [      "string"    ],    "headcount": 0,    "headcountRange": "string",    "headcountGrowth12m": 0,    "country": "string",    "headquarters": "string",    "funding": {      "totalUsd": 0,      "lastRoundUsd": 0,      "lastRoundType": "string",      "lastRoundDate": "string",      "investors": [        "string"      ]    },    "followers": 0,    "openings": 0,    "estimatedRevenue": {      "minUsd": 0,      "maxUsd": 0    }  }}