Search vendor catalog with filtering, relevance scoring, and optional product listing. When a text filter (vendor_name, description) is present and no explicit sort is given, results are ranked by relevance (exact > prefix > substring + popularity bonus).
Security
authorization
Vendor search request
Cap on products listed per vendor, ordered by presence_frequency descending.
Default:10
POST
curl -i -X POST \
https://api.hginsights.com/data-api/v2/products/vendors/search \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"filters": {
"description": "string",
"has_products_with_installs": true,
"vendor_id": 0,
"vendor_name": "string"
},
"include_products": false,
"limit": 50,
"offset": 0,
"products_limit": 10,
"sort": []
}'Response
{ "count": 1, "data": [ { … } ] }