Find Email by Person
Find Email by Person
Find a person's business email address using their name and company information. This enrichment locates the most accurate email address for your target contact.
[!NOTE]
See the API Guide for the shared request lifecycle (sync, async polling, async webhook), error envelope, rate limits, custom_vars, and deduplication. This page documents only the fields and behaviour unique to this endpoint.
Try it
Pricing
Endpoint
Parameter Requirements
You must provide:
- Company identifier: Either
domain OR company_name
- Person identifier: Either
full_name OR both first_name and last_name
The full_name parameter must contain at least two words (first and last name). Single-word names will be rejected.
Examples
Output Fields
Email Status Values
| Status |
Description |
valid |
The email address has been verified as deliverable. |
risky |
An email was found but could not be fully verified. Use with caution. |
not_found |
No email address could be found for this person. |
blacklisted |
The email or domain is on a known blacklist. |
Validation Errors
Missing required fields
{
"message": "The domain field is required when company name is not present.",
"errors": {
"domain": [
"The domain field is required when company name is not present."
],
"company_name": [
"The company name field is required when domain is not present."
],
"full_name": [
"The full name field is required when none of first name / last name are present."
]
}
}
Single-word full_name
{
"message": "The full name must contain at least a first and last name.",
"errors": {
"full_name": [
"The full name must contain at least a first and last name."
]
}
}