hunterApiEmailFinder
Find an email address for a specific person at a domain using Hunter.io.
mindstudio.hunterApiEmailFinder({ domain, firstName, lastName }) → Result
Finds the likely email address for a named person at a domain, via Hunter.io. Pair it with hunterApiEmailVerification before sending to avoid bouncing.
Parameters
domain
string
RequiredDomain to search (e.g. "example.com"). Full URLs are also accepted
firstName
string
RequiredPerson's first name
lastName
string
RequiredPerson's last name
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.hunterApiEmailFinder({ domain: /* ... */, firstName: /* ... */, lastName: /* ... */ });