v3

latestOpenAPI 3.1.02026-07-318648277.6 KB
People Enrichment

Email Validation

Validate an email address for deliverability and get company enrichment data.

post/v1/people/email-validation

Request body

emailstring email required

Email address to validate

Example request

{
  "email": "alex.rivera@example.com"
}

Response

Successful validation

emailstring
email_statusstring
credits_consumednumber
messagestring
mx_recordstring
mx_providerstring
mx_gatewaystring nullable

Security gateway vendor name

mx_gateway_typestring nullable

Security gateway type

mx_security_gatewayboolean
company_namestring
company_industrystring
company_sizestring
company_foundedinteger
company_typestring
company_linkedin_urlstring

Legacy field name for the B2B company profile.

company_linkedin_idstring
company_facebook_urlstring nullable
company_twitter_urlstring nullable

Example response

{
  "email": "alex.rivera@example.com",
  "email_status": "valid",
  "credits_consumed": 0.25,
  "message": "Email is valid.",
  "mx_record": "mx1.example.com",
  "mx_provider": "Example Mail",
  "company_name": "Leadmagic",
  "company_industry": "Internet",
  "company_size": "11-50",
  "company_founded": 2022,
  "company_type": "Private",
  "company_location": {
    "name": "Boston, Massachusetts, United States",
    "locality": "Boston",
    "region": "Massachusetts",
    "metro": "Boston",
    "country": "United States",
    "continent": "North America",
    "street_address": "1 Seaport Lane",
    "postal_code": "02210"
  },
  "company_linkedin_url": "example.com/company/acme",
  "company_linkedin_id": "75153174"
}