Search ZoomInfo Companies
zoominfo_search_companySearch ZoomInfo for companies by name, domain, industry, size, or revenue to get firmographic data like employee count, revenue, and location.
Instructions
Search the ZoomInfo database for companies by name, domain, industry, size, or revenue.
Returns firmographic data: employee count, revenue, industry, location, and description. Use the returned company ID for zoominfo_get_org_chart or zoominfo_get_tech_stack.
Args:
company_name (string, optional): Company name (partial match)
domain (string, optional): Website domain (e.g. 'acme.com')
industry (string, optional): Industry filter
min_employees / max_employees (number, optional): Employee count range
min_revenue (number, optional): Minimum annual revenue in USD
country (string, optional): Country filter
limit (number): Max results (default: 20, max: 100)
page (number): Page number (default: 1)
response_format ('markdown' | 'json')
Returns: Company name, website, industry, employee count, revenue, location, founded year.
Examples:
"Find Acme Corp" -> company_name='Acme'
"SaaS companies with 500+ employees" -> industry='Technology', min_employees=500
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination | |
| limit | No | Maximum results to return (default: 20, max: 100) | |
| domain | No | Company website domain (e.g. 'acme.com') | |
| country | No | Country filter (e.g. 'US', 'United Kingdom') | |
| industry | No | Industry filter (e.g. 'Technology', 'Healthcare') | |
| min_revenue | No | Minimum annual revenue in USD | |
| company_name | No | Company name to search for (partial match) | |
| max_employees | No | Maximum employee count | |
| min_employees | No | Minimum employee count | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |