YepAPI
Email API

Email Enrichment

Turn any email address into a full contact profile — name, company, location, social links, and verification status.

POST/v1/email/enrich
$0.02/call

Usage

const res = await fetch('https://api.yepapi.com/v1/email/enrich', {
  method: 'POST',
  headers: {
    'x-api-key': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ email: '[email protected]' }),
});
const { data } = await res.json();
console.log(data);
curl -X POST https://api.yepapi.com/v1/email/enrich \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]"}'

Request Body

ParameterTypeRequiredDescriptionDefault
emailstringYesEmail address to enrich

Response

{
  "data": {
    "contact": {
      "acceptAll": true,
      "company": "Stripe",
      "companyDomain": "stripe.com",
      "confidenceScore": 26,
      "country": "US",
      "department": null,
      "disposable": false,
      "email": "[email protected]",
      "firstName": "Matthew",
      "fullName": "Matthew Yalowitz",
      "gender": "male",
      "hasPhone": true,
      "lastName": "Yalowitz",
      "linkedin": "https://www.linkedin.com/in/myalowitz",
      "position": null,
      "seniority": null,
      "sources": [],
      "twitter": null,
      "type": "personal",
      "verificationStatus": "invalid",
      "verified": false,
      "webmail": false
    }
  },
  "ok": true
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.contactobjectThe enriched contact profile
data.contact.emailstringThe email address that was enriched
data.contact.firstNamestring | nullFirst name
data.contact.lastNamestring | nullLast name
data.contact.fullNamestring | nullFull name
data.contact.companystring | nullCompany name
data.contact.companyDomainstring | nullCompany domain
data.contact.positionstring | nullJob title
data.contact.departmentstring | nullDepartment
data.contact.senioritystring | nullSeniority level
data.contact.genderstring | nullInferred gender
data.contact.countrystring | nullISO country code
data.contact.confidenceScorenumberConfidence score from 0 to 100
data.contact.typestring | nullpersonal or generic
data.contact.verifiedbooleanWhether the email has been verified as deliverable
data.contact.verificationStatusstring | nullVerification result (e.g., valid, invalid)
data.contact.acceptAllbooleanWhether the mailbox domain is catch-all
data.contact.disposablebooleanWhether the address is a disposable email
data.contact.webmailbooleanWhether the address is a webmail account
data.contact.hasPhonebooleanWhether a phone number is available for this contact
data.contact.linkedinstring | nullLinkedIn profile URL
data.contact.twitterstring | nullTwitter/X profile URL
data.contact.sourcesobject[]Public web pages where the email was found
Under the Hood

For a structured person/company breakdown of the same email, see Person Enrichment and Combined Enrichment.

On this page