Email

In today’s data-driven landscape, having accurate and complete email data directly impacts your organization’s efficiency, deliverability, and outreach success. Delpha’s Email Finder and Email Validator solutions ensure your email database remains robust, accurate, and up-to-date by systematically discovering missing emails and verifying email addresses.

Delpha evaluates email data across four critical dimensions:

  • Completeness: Uses advanced Email Finder technology to locate and populate missing email addresses.

  • Validity: Employs a powerful Email Validator to confirm emails adhere to standard formatting rules and are deliverable.

  • Accuracy: Ensures that discovered emails match the intended individuals correctly.

  • Consistency: Verifies alignment between emails and related data points such as domains, company websites, etc...

Additionally:

  • Email Validator classifies emails as personal or professional, supporting GDPR compliance and improving deliverability.

  • Email Finder offers AI-generated email recommendation for correcting or completing emails, accompanied by confidence scores to guide effective decision-making.

Delpha’s integrated Email Finder and Email Validator provide a comprehensive health check and intelligent enrichment, delivering actionable insights that enhance communication success, regulatory compliance, and overall data integrity.

Submit email for finding and validation

post

Submit an email address for finding and validation. Returns a job ID for tracking the process.

Authorizations
Body

Payload to submit a new email quality job.

emailstringRequired

The email address

Example: [email protected]
first_nameany ofOptional

First name

Example: Victor
stringOptional
or
nullOptional
last_nameany ofOptional

Last name

Example: Goubet
stringOptional
or
nullOptional
websiteany ofOptional

Website URL

Example: https://delpha.io/
stringOptional
or
nullOptional
Responses
202
Job submitted to assess_email_v16
application/json
post
POST /v1/email HTTP/1.1
Host: api-dev.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 108

{
  "email": "[email protected]",
  "first_name": "Victor",
  "last_name": "Goubet",
  "website": "https://delpha.io/"
}
{
  "job_id": "21014abc65004d2781d2e0ef4c9fbb46",
  "message": "Job submitted to assess_email_v16",
  "status": "SUCCESS",
  "status_code": 202
}

Get email finder and validator job status

get

Retrieve the result and status of a previously submitted email finder and validator job.

Authorizations
Path parameters
job_idstringRequired

The unique identifier of the email job

Example: {"summary":"Sample job ID","value":"21014abc65004d2781d2e0ef4c9fbb46"}
Responses
200
Job succeeded.
application/json
get
GET /v1/email/{job_id} HTTP/1.1
Host: api-dev.delpha.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "message": "Job succeeded.",
  "status": "SUCCESS",
  "status_code": 200,
  "result": {
    "label": "OK",
    "normalized_value": "[email protected]",
    "provider": "Orange",
    "email_domain": "orange.fr",
    "email_domain_qualification": "nominative@perso",
    "email_status": "Valid",
    "suggestions": {
      "value": "[email protected]",
      "score": 0.7260620227245627
    },
    "website_domain": "delpha.io",
    "website_domain_qualification": "nominative@pro",
    "suggestions_from_website": {
      "value": "[email protected]",
      "score": 0.7260620227245627
    },
    "data_type": "email",
    "scores": {
      "validity": 1,
      "completeness": 1,
      "accuracy": 0.7116992363593002,
      "consistency": 0
    }
  },
  "process_time": 0.123
}

Was this helpful?