Company FAI (Functional Area Intelligence)
Retrieve functional area intelligence about how specific products are used within company departments.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
companyDomain | string | Yes | salesforce.com | The company domain to analyze (e.g., "example.com"). Do not include protocol. |
hg_id | string | No | - | HG Insights company ID (32 alphanumeric characters). When provided, overrides companyDomain. |
products | string[] | No | - | Array of product names to analyze via fuzzy matching (e.g., ["snowflake", "microsoft office"]). 1-20 items. Use productIds instead when you have exact IDs. |
productIds | number[] | No | - | Array of HG Insights numeric product IDs for exact lookup (e.g., [34490, 32955]). 1-20 items. Get these from the productId field in company_technographic results. Takes precedence over products. |
provider | string | No | auto | Provider to use for data lookup. |
Required Integrations
hginsights
Important Notes
- Preferred: Pass
productIds(numeric IDs fromcompany_technographicresults) for exact, deterministic lookup. - Fallback: Pass product names in
productsfor fuzzy matching. - At least one of
productsorproductIdsshould be provided for meaningful results.
Use Cases
- Department-level technology analysis
- Buying center identification
- Organizational structure insights
- Sales territory planning and account mapping
Example Usage
Using product IDs (recommended)
{
"tool": "company_fai",
"parameters": {
"companyDomain": "cisco.com",
"productIds": [34490, 32955]
}
}
Using product names (fuzzy matching)
{
"tool": "company_fai",
"parameters": {
"companyDomain": "cisco.com",
"products": ["snowflake", "microsoft office", "salesforce"]
}
}
Lookup by HG ID
{
"tool": "company_fai",
"parameters": {
"hg_id": "0FF69D9F596504A1FF4FF5B16FF",
"products": ["snowflake"]
}
}
Response Format
The tool returns a structured JSON response with:
data: FAI data showing which departments use each productmetadata: Execution metadata including timing and provider information
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
company_technographic- GetproductIdvalues to use with this toolget_vendor_information- Look up product IDs by vendor namecompany_firmographic- Company size, industry, location