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
| Metric | Value |
|---|
| Cost | 5 credits per email found |
| No Results | FREE if no email found |
Every email found is automatically validated for deliverability.
Per-Endpoint Limit
| Metric | Value |
|---|
| Requests/Minute | 300 |
| Burst Capacity | ~5 requests/second |
Rate limits are subject to change. Custom rate limits are available on enterprise plans — contact us.
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
B2B person profile URL or slug.
Response
Work email address found (null if not found)
The B2B person profile used for lookup
Credits used (5 if found, 0 if not)
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
| Message | Meaning | Cost |
|---|
Email found. | Work email successfully retrieved | 5 credits |
No email found for this profile. | No work email available | FREE |
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.
Compare with Email Finder
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.
Your LeadMagic API key. Header name is case-insensitive (X-API-Key, X-API-KEY, x-api-key all work).
profile_url
string
default:alex-rivera
required
B2B person profile URL or slug
Successful response with profile and email details
Example:"alex.rivera@example.com"