Get Vendor Information
Look up technology vendors from the HG Insights catalog with optional fuzzy search.
Tool key: get_vendor_information
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
vendorName | string | No | - | Vendor name to search for (fuzzy matched). When provided, returns matched vendors with their products. When omitted, returns the full vendor catalog. |
Required Integrations
hginsights
How It Works
This tool operates in two modes:
Fuzzy search mode (when vendorName is provided):
- Performs fuzzy matching against the vendor catalog
- Returns matched vendors with their products and product IDs
- Use the returned IDs with
company_technographic'sproductIdsorvendorIdsparameters
Discovery mode (when vendorName is omitted):
- Returns the complete vendor catalog for browsing
- Does not include product details per vendor
Use Cases
- Vendor research and discovery
- Getting vendor/product IDs for use with
company_technographic - Competitive landscape analysis
- Market coverage analysis
Example Usage
Fuzzy vendor search
{
"tool": "get_vendor_information",
"parameters": {
"vendorName": "Anthropic"
}
}
Full catalog listing
{
"tool": "get_vendor_information",
"parameters": {}
}
Response Format
The tool returns a structured JSON response with:
count: Number of vendors returnedvendors: Array of vendor objects withid,name,matchScore(0-1, search mode only), andproducts(search mode only, each withid,name,categoryId)
Composable Workflow
To check if a company uses a specific vendor:
- Call
get_vendor_informationwithvendorNameto get the vendor ID - Call
company_technographicwithvendorIds: [<id>]to check usage
Error Handling
Common errors:
- Missing Integration: HG Insights API key not configured
- Authentication Error: Invalid API key
- Service Error: HG Insights API unavailable
Related Tools
company_technographic- Use vendor/product IDs from this tool to filter technographic datalist_product_categories- Browse product categorieslist_product_attributes- Browse product attributes