Batch match up to 10 companies by name, domain, and/or country.
Each company in the request must include at least one of: name, domain, country. Results are returned in the same order as the input, with each entry containing the matched HG company records sorted by relevance.
Security
authorization
Match Request
POST
curl -i -X POST \
https://api.hginsights.com/data-api/v2/companies/match \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"companies": [
{
"country": "US",
"domain": "ford.com",
"name": "Ford Motor Company"
},
{
"domain": "google.com"
}
],
"limit": 3
}'Response
{ "companies": [ { … }, { … } ] }