Skip to main content
POST
/
v1
/
people
/
b2b-profile-email
B2B Person Profile 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": "alex-rivera"
}
'
{
  "profile_url": "alex-rivera",
  "credits_consumed": 5,
  "message": "Email Found.",
  "email": "alex.rivera@example.com"
}

Documentation Index

Fetch the complete documentation index at: https://leadmagic.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

B2B Person Profile to Email

Convert a B2B person profile into a verified work email address. The reverse of Email to B2B Person 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-email' \
  -H 'X-API-Key: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"profile_url": "linkedin.com/in/alex-rivera"}'

Request Parameters

profile_url
string
required
B2B person profile URL or slug.

Response

email
string
Work email address found (null if not found)
profile_url
string
required
The B2B person profile 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": "alex.rivera@example.com",
  "profile_url": "linkedin.com/in/alex-rivera",
  "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 alex-rivera 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 B2B person profile? Get their work email instantly.

B2B Profile Export

Convert exported B2B 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:alex-rivera
required

B2B person profile URL or slug

Response

Successful response with profile and email details

profile_url
string
Example:

"alex-rivera"

credits_consumed
integer
Example:

5

message
string
Example:

"Email Found."

email
string
Example:

"alex.rivera@example.com"