Enhance your email data with name and gender information.
What is Data Enrichment?
Data enrichment adds valuable information to your email addresses by extracting and analyzing the name portion of the email to provide:
- First name
- Last name
- Gender prediction
- Confidence score
How to Enable
Add enrich: true to your verification request:
{
"email": "john.smith@company.com",
"options": {
"enrich": true
}
}Response
{
"email": "john.smith@company.com",
"status": "valid",
"enrichment": {
"first_name": "John",
"last_name": "Smith",
"gender": "male",
"confidence": 0.95
}
}Use Cases
- Personalized email greetings
- Segmentation by gender
- CRM data completion
- Lead scoring enhancement