Skip to main content
POST
/
v1
/
people
/
b2b-profile-email
B2B Social to Email
curl --request POST \
  --url https://api.leadmagic.io/v1/people/b2b-profile-email \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "profile_url": "jesseoue"
}
'
{
  "profile_url": "jesseoue",
  "credits_consumed": 5,
  "message": "Email Found.",
  "email": "jesse@leadmagic.io"
}

Profile to Email

Convert a professional profile URL into a verified work email address. The reverse of Email to Profile.

Endpoint Details

MetricValue
Cost5 credits per email found
No ResultsFREE if no email found
Every email found is automatically validated for deliverability.

Quick Example

curl -X POST 'https://api.leadmagic.io/v1/people/b2b-profile-to-email' \
  -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

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

Example Response

{
  "email": "john.doe@company.com",
  "profile_url": "linkedin.com/in/johndoe",
  "credits_consumed": 5,
  "message": "Email found."
}

Success Messages

MessageMeaningCost
Email found.Work email successfully retrieved5 credits
No email found for this profile.No work email availableFREE

Best Practices

Remove tracking parameters from profile URLs for best results. Just the base URL works.
You can pass just johndoe and we’ll resolve it to the full profile.
If you have the person’s name and company, Email Finder (1 credit) may be more cost-effective than this endpoint (5 credits).

Use Cases

Profile Prospecting

Found someone’s profile? Get their work email instantly.

Sales Navigator Export

Convert exported profile lists into actionable email lists.

Event Follow-up

Got connections at an event? Get their emails.

Inbound Lead Enrichment

Visitor shared their profile? Get their work contact.

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

Public Identifier

Response

Successful response with profile and email details

profile_url
string
Example:

"jesseoue"

credits_consumed
integer
Example:

5

message
string
Example:

"Email Found."

email
string
Example:

"jesse@leadmagic.io"