YepAPI
Email API

Author Finder

Find the email address of the author behind any article or blog post URL.

POST/v1/email/author-finder
$0.02/call

Usage

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

Request Body

ParameterTypeRequiredDescriptionDefault
urlstringYesURL of the article or blog post to find the author of

Response

{
  "data": {
    "contact": {
      "acceptAll": false,
      "company": null,
      "companyDomain": null,
      "confidenceScore": 0,
      "country": null,
      "department": null,
      "disposable": false,
      "email": null,
      "firstName": null,
      "fullName": null,
      "gender": null,
      "hasPhone": false,
      "lastName": null,
      "linkedin": null,
      "position": null,
      "seniority": null,
      "sources": [],
      "twitter": null,
      "type": null,
      "verificationStatus": null,
      "verified": false,
      "webmail": false
    }
  },
  "ok": true
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.contactobjectThe author's contact — fields are null when no author email could be found
data.contact.emailstring | nullThe author's email address
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

If no author can be identified for the URL, the request still succeeds — data.contact.email is null and confidenceScore is 0. Works best on articles with a visible byline.

On this page