Find Business Email
deliveriq_find_emailFind a person's business email address by providing their first and last name along with their company domain or company name. Validates email through pattern generation, SMTP probing, and public source corroboration.
Instructions
Find a person's business email address by name and company domain. Uses pattern generation, SMTP probing, corroboration from public sources, and org intelligence.
Args:
first_name (string): Person's first name
last_name (string): Person's last name
domain (string, optional): Company domain (e.g. "acme.com"). Required if company_name is not set
middle_name (string, optional): Middle name for disambiguation
company_name (string, optional): Company name, used to resolve domain if domain is not provided
Returns: Found email address, confidence score and label, verification method, and domain context.
Examples:
"Find John Doe at acme.com" -> { first_name: "John", last_name: "Doe", domain: "acme.com" }
"Find Jane Smith at Globex Corp" -> { first_name: "Jane", last_name: "Smith", company_name: "Globex Corp" }
Credit cost: 2 credits per lookup
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| first_name | Yes | First name of the person (e.g. "John") | |
| last_name | Yes | Last name of the person (e.g. "Doe") | |
| domain | No | Company domain (e.g. "acme.com"). Required if company_name is not provided | |
| middle_name | No | Middle name (improves accuracy for common names) | |
| company_name | No | Company name (e.g. "Acme Corp"). Used if domain is not provided |