Company Technographic
Get technographic data (technology usage) for a company by domain, including installed technologies, vendors, usage intensity, and verification dates.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
companyDomain | string | Yes | salesforce.com | The company domain to lookup (e.g., "example.com"). Do not include protocol. |
hg_id | string | No | - | HG Insights company ID (32 alphanumeric characters). When provided, overrides companyDomain. |
categories | string[] | No | [] | Filter by technology categories (fuzzy matched). E.g., ["CRM", "ERP", "Security"]. |
productIds | number[] | No | - | Filter by exact HG Insights product IDs (numeric). Get IDs from get_vendor_information or from previous company_technographic results' productId field. |
vendorIds | number[] | No | - | Filter by exact HG Insights vendor IDs (numeric). Get IDs from get_vendor_information. |
sort | "intensity" | "date" | No | "intensity" | Sort by usage intensity (high to low) or most recently verified date. |
maxResults | number | No | 50 | Maximum number of results to return (1-500). |
provider | string | No | auto | Data provider to use. |
Required Integrations
hginsights
Important Notes
productIdsandvendorIdsaccept numeric IDs (not string names). Useget_vendor_informationto look up IDs by name.categoriesaccepts string names with fuzzy matching (e.g., "Security", "CRM").- Large unfiltered requests may be truncated. Use
categories,productIds, orvendorIdsto narrow results. - Empty results mean no data was found — this does not indicate a tool limitation.
Use Cases
- Technology adoption analysis
- Competitive intelligence
- Tech stack mapping
- Sales targeting by technology usage
Example Usage
Basic lookup
{
"tool": "company_technographic",
"parameters": {
"companyDomain": "walmart.com"
}
}
Filter by vendor IDs
First, get vendor IDs using get_vendor_information:
{
"tool": "get_vendor_information",
"parameters": { "vendorName": "Anthropic" }
}
Then pass the returned vendor ID:
{
"tool": "company_technographic",
"parameters": {
"companyDomain": "walmart.com",
"vendorIds": [12345]
}
}
Filter by category
{
"tool": "company_technographic",
"parameters": {
"companyDomain": "cisco.com",
"categories": ["Security", "CRM"]
}
}
Filter by product IDs
{
"tool": "company_technographic",
"parameters": {
"companyDomain": "salesforce.com",
"productIds": [34490, 32955]
}
}
Response Format
The tool returns a structured JSON response with technology data including:
productId(numeric),productName,vendorName,vendorIdintensity(usage level),firstVerifiedDate,lastVerifiedDatecategoryinformation
Error Handling
Common errors:
- Missing Integration: HG Insights API key not configured
- Invalid Parameters: Parameters don't match the schema
- Rate Limit: API rate limit exceeded
- Not Found: Company domain not in database
Related Tools
get_vendor_information- Look up vendor/product IDs for use with this toolcompany_fai- Departmental technology usage (passproductIdsfrom this tool's results)company_firmographic- Company size, industry, locationcompany_spend- IT spending patterns