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§
Source§readonly filters?: {
department?: (
| "it"
| "marketing"
| "finance"
| "legal"
| "sales"
| "support"
| "executive"
| "management"
| "hr"
| "communication"
)[];
seniority?: ("executive" | "senior" | "junior")[];
type?: "personal" | "generic";
}
readonly filters?: {
department?: (
| "it"
| "marketing"
| "finance"
| "legal"
| "sales"
| "support"
| "executive"
| "management"
| "hr"
| "communication"
)[];
seniority?: ("executive" | "senior" | "junior")[];
type?: "personal" | "generic";
}
Default: {}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
Domain name from which you want to find the email addresses. For example, "stripe.com".