Skip to main content
POST
/
v1
/
people
/
personal-email-finder
Personal Email Finder
curl --request POST \
  --url https://api.leadmagic.io/v1/people/personal-email-finder \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "profile_url": "jesseoue"
}
'
{
  "profile_url": "jesseoue",
  "credits_consumed": 2,
  "message": "Personal Email Found.",
  "name": "Jesse Ouellette",
  "first_personal_email": "jesseouel@gmail.com",
  "personal_emails": [
    "jesseouel@gmail.com"
  ]
}

Find Personal Email

Find personal email addresses for professionals using their profile URL. Ideal for reaching people outside of work contexts.

Endpoint Details

MetricValue
Cost2 credits per email found
No ResultsFREE if no email found
Personal emails are harder to find than work emails, hence the higher cost when found.

Quick Example

curl -X POST 'https://api.leadmagic.io/v1/people/personal-email-finder' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"profile_url": "linkedin.com/in/johndoe"}'

Request Parameters

profile_url
string
required
Professional profile URL or username.

Response

profile_url
string
required
The profile URL used for lookup
personal_email
string
Personal email address found (null if not found)
credits_consumed
number
required
Credits used (2 if found, 0 if not)
message
string
required
Human-readable status message

Example Response

{
  "profile_url": "linkedin.com/in/johndoe",
  "personal_email": "john.doe@gmail.com",
  "credits_consumed": 2,
  "message": "Personal email found."
}

Success Messages

MessageMeaningCost
Personal email found.Email successfully retrieved2 credits
No personal email found for this contact.No personal email availableFREE

Best Practices

Personal emails are better for recruiting since candidates may not check work email.
Personal emails should be used thoughtfully. Ensure compliance with privacy regulations.
Use both work and personal email channels for important outreach campaigns.

Use Cases

Recruiting

Reach candidates on personal email where they’re more likely to respond.

Former Employees

Contact people who’ve left a company and no longer have work email.

Multi-Channel Outreach

Build complete contact profiles with both work and personal channels.

Event Follow-up

Follow up with conference contacts using personal email.

Authorizations

X-API-Key
string
header
required

Your LeadMagic API key. Header name is case-insensitive (X-API-Key, X-API-KEY, x-api-key all work).

Body

application/json
profile_url
string
default:jesseoue
required

Professional profile URL or identifier

Response

Successful response with personal email details

profile_url
string
Example:

"jesseoue"

credits_consumed
integer
Example:

2

message
string
Example:

"Personal Email Found."

name
string
Example:

"Jesse Ouellette"

first_personal_email
string
Example:

"jesseouel@gmail.com"

personal_emails
string[]
Example:
["jesseouel@gmail.com"]