Get Vendor Information
get_vendor_information resolves a single vendor in the HG Insights taxonomy by its vendor_id. It proxies POST /v2/products/vendors/search with filters.vendor_id and limit: 1, returning the single matching row (or null when the id is unknown).
For browsing or multi-row search, use company_technographic / catalog search to obtain candidate vendor_ids first.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
vendorId | int (≥ 0) | Yes | — | Exact vendor_id (UInt64). |
includeProducts | boolean | No | false | When true, the row carries a products[] of {product_id, product_name} (capped at productsLimit). |
productsLimit | int (1–100) | No | 10 | Cap on the products[] array when includeProducts is true. |
Required Integrations
hginsights_v2
Credit Cost
Free — no credits consumed.
Example Usage
Single-vendor lookup
{
"tool": "get_vendor_information",
"parameters": { "vendorId": 376 }
}
With product list
{
"tool": "get_vendor_information",
"parameters": { "vendorId": 376, "includeProducts": true, "productsLimit": 5 }
}
Response Format
{
"vendor": {
"vendor_id": 376,
"vendor_name": "Salesforce.com, Inc.",
"vendor_url": "salesforce.com",
"vendor_parent_id": null,
"vendor_company_id": "44A720BBBF1FC3ACAB85A3B9B7D8C7A3",
"vendor_company_description": "Salesforce is a cloud-based software …",
"product_count": 42,
"products": null
},
"credits_consumed": 0
}
vendorisnullwhen thevendor_idis unknown.productsisnullwhenincludeProductsis false/omitted.
Composable Workflow
- Obtain a
vendor_id(e.g. fromcompany_technographicresults). - Call
get_vendor_informationwith that id to fetch metadata. - Use
vendor_id/product_idasvendorIds/productIdsfilters incompany_technographic.
Error Handling
| Cause | Surface |
|---|---|
Missing vendorId | Tool-side Zod validation error |
| HG Insights V2 auth failure | UpstreamApiError 401/403 with a helpful auth message |
| Upstream 503 / timeout | Structured upstream error |
Related Tools
list_product_categories— browse the category taxonomylist_product_attributes— browse the attribute taxonomyget_product_category/get_product_attribute— single-item lookupscompany_technographic— filter byvendorIds/productIds