The enrichment endpoint returns firmographics, spend, and technographics data for companies.
POST /api/v2/companies/enrich{
"companies": {
"ids": ["1698C53EBC888758570396E0334965C1"]
},
"fields": ["firmographics", "spend", "technographics"]
}| Parameter | Type | Required | Description |
|---|---|---|---|
companies.ids | array | Yes | Company IDs (hex format, max 50) |
fields | array | No | Data categories to return |
You can request specific data categories by including them in the fields array:
firmographics- Company information including name, domain, location, industry classification, revenue, employee counts, and HG rankingsspend- IT spending data organized by technology category, including spend amounts and category detailstechnographics- Technology installation data including products, vendors, usage intensity, installation dates, and product categories
If you omit the fields parameter, all available field groups will be returned in the response.
{
"companies": [
{
"company_id": "1698C53EBC888758570396E0334965C1",
"firmographics": {
"name": "Walmart Inc.",
"url": "walmart.com",
"country_code": "US",
"employees_total": 2100000,
"revenue_total": 680985000000
},
"spend": {
"all": [...],
"all_count": 135
},
"technographics": {
"installs": [...],
"installs_count": 5900
}
}
]
}Filter installs by vendor, product, or category:
{
"companies": {"ids": ["..."]},
"fields": ["technographics"],
"filters": {
"technographics": {
"vendors": {"ids": [316]},
"products": {"ids": [814]}
}
}
}