tools/integrations/zoominfo.md
B2B contact database and intent data platform with 100M+ business contacts and company intelligence for sales and marketing teams.
| Integration | Available | Notes |
|---|---|---|
| API | ✓ | Contact Search, Company Search, Enrichment, Intent Data, Scoops |
| MCP | ✓ | Claude connector |
| CLI | ✓ | zoominfo.js |
| SDK | - | REST API only |
/authenticate with username + password, receive JWT tokenAuthorization: Bearer {jwt_token}ZOOMINFO_USERNAME + ZOOMINFO_PRIVATE_KEY or ZOOMINFO_ACCESS_TOKENPOST https://api.zoominfo.com/authenticate
{
"username": "[email protected]",
"password": "private-key-here"
}
POST https://api.zoominfo.com/search/contact
{
"jobTitle": ["VP Marketing"],
"companyName": ["Acme Corp"],
"managementLevel": ["VP"],
"rpp": 25,
"page": 1
}
POST https://api.zoominfo.com/enrich/contact
{
"matchEmail": ["[email protected]"]
}
POST https://api.zoominfo.com/search/company
{
"companyName": ["Acme"],
"industry": ["Software"],
"employeeCountMin": 50,
"revenueMin": 10000000,
"rpp": 25,
"page": 1
}
POST https://api.zoominfo.com/enrich/company
{
"matchCompanyWebsite": ["acme.com"]
}
POST https://api.zoominfo.com/lookup/intent
{
"topicId": ["marketing-automation"],
"companyId": ["123456"]
}
POST https://api.zoominfo.com/lookup/scoops
{
"companyId": ["123456"],
"rpp": 25,
"page": 1
}
firstName, lastName - NamejobTitle - Job titleemail - Verified emailphone - Direct phonelinkedinUrl - LinkedIn profilecompanyName - Company namemanagementLevel - Seniority leveldepartment - DepartmentcompanyName - Company namewebsite - Website URLemployeeCount - Employee countindustry - Industryrevenue - Annual revenuetechStack - Technologies usedfundingAmount - Total fundingcompanyCity, companyState, companyCountry - LocationtopicName - Intent topicsignalScore - Signal strengthaudienceStrength - Audience engagement levelfirstSeenDate, lastSeenDate - Signal timeframejobTitle - Array of job titlescompanyName - Array of company namesmanagementLevel - Array: C-Level, VP, Director, Manager, Staffdepartment - Array: Marketing, Sales, Engineering, Finance, etc.personLocationCity - Array of citiespersonLocationState - Array of statespersonLocationCountry - Array of countriesrpp - Results per page (default: 25, max: 100)page - Page number (default: 1)matchEmail - Array of email addressespersonId - Array of ZoomInfo person IDsmatchFirstName + matchLastName + matchCompanyName - Alternative lookupcompanyName - Array of company namesindustry - Array of industriesemployeeCountMin / employeeCountMax - Employee count rangerevenueMin / revenueMax - Revenue rangecompanyLocationCity - Array of citiesrpp - Results per pagepage - Page numbermatchCompanyWebsite - Array of domainscompanyId - Array of ZoomInfo company IDstopicId - Array of intent topic IDscompanyId - Array of company IDs