YepAPI
Email API

Person Enrichment

Turn an email address into a structured person profile — name, employment, location, and social handles.

POST/v1/email/person
$0.03/call

Usage

const res = await fetch('https://api.yepapi.com/v1/email/person', {
  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/person \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]"}'

Request Body

ParameterTypeRequiredDescriptionDefault
emailstringYesEmail address of the person to enrich

Response

{
  "data": {
    "person": {
      "bio": null,
      "email": "[email protected]",
      "employment": {
        "company": "Stripe",
        "domain": "stripe.com",
        "role": null,
        "seniority": null,
        "title": null
      },
      "firstName": "Matthew",
      "fullName": "Matthew Yalowitz",
      "gender": "male",
      "geo": {
        "city": null,
        "country": "United States",
        "countryCode": "US",
        "state": null
      },
      "lastName": "Yalowitz",
      "location": "US",
      "social": {
        "facebook": null,
        "github": null,
        "linkedin": "https://www.linkedin.com/in/myalowitz",
        "twitter": null
      }
    }
  },
  "ok": true
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.personobjectThe structured person profile
data.person.emailstringThe email address that was enriched
data.person.firstNamestring | nullFirst name
data.person.lastNamestring | nullLast name
data.person.fullNamestring | nullFull name
data.person.genderstring | nullInferred gender
data.person.biostring | nullShort biography, when available
data.person.locationstring | nullLocation string
data.person.employmentobjectCurrent employment — company, domain, title, role, seniority
data.person.geoobjectGeographic details — city, state, country, countryCode
data.person.socialobjectSocial profiles — facebook, github, linkedin, twitter
Under the Hood

Need the employer's details too? Combined Enrichment returns this person profile plus a full company profile in a single call.

On this page