interface HunterNodeParameters {
domain?: string;
email?: string;
filters?: {
department?: (
| "it"
| "marketing"
| "finance"
| "legal"
| "sales"
| "support"
| "executive"
| "management"
| "hr"
| "communication"
)[];
seniority?: ("executive" | "senior" | "junior")[];
type?: "personal" | "generic";
};
firstname?: string;
lastname?: string;
limit?: number;
onlyEmails?: boolean;
operation?: | "domainSearch"
| "emailFinder"
| "emailVerifier";
returnAll?: boolean;
}Properties§
§§§§§§§§
readonly domain?: string§
readonly email?: stringThe email address you want to verify
readonly filters?: { ... }Default: {}
readonly firstname?: stringThe person's first name. It doesn't need to be in lowercase.
readonly lastname?: stringThe person's last name. It doesn't need to be in lowercase.
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
readonly only Emails?: booleanWhether to return only the found emails Default: true
readonly operation?: "domainSearch" | "emailFinder" | "emailVerifier"Operation to consume Default: "domainSearch"
readonly return All?: booleanWhether to return all results or only up to a given limit
Domain name from which you want to find the email addresses. For example, "stripe.com".