Email Reverse Lookup
curl --request POST \
--url https://api.linkupapi.com/v1/data/mail/reverse \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"email": "<string>"
}
'{
"status": "success",
"data": {
"email_parsed": {
"original_email": "[email protected]",
"first_name": "satya",
"last_name": "nadella",
"company_domain": "microsoft.com",
"parsing_confidence": "high"
},
"person_found": {
"public_id": "satya-nadella-3145678",
"first_name": "Satya",
"last_name": "Nadella",
"headline": "Chairman and CEO at Microsoft",
"location": "Redmond, Washington, United States",
"summary": "Passionate about empowering every person and organization on the planet to achieve more.",
"industry": "Technology",
"experience": [
{
"company": "Microsoft",
"title": "Chairman and CEO",
"description": "Leading Microsoft's mission to empower every person and every organization on the planet to achieve more.",
"start_date": "02/2014",
"end_date": "",
"company_url": "https://linkedin.com/company/microsoft",
"company_logo_url": "https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_400_400/0/1630652622688/microsoft_logo?e=1759968000&v=beta&t=example"
}
],
"education": [
{
"school": "University of Chicago Booth School of Business",
"degree": "MBA",
"field_of_study": "Business Administration"
}
],
"skills": ["Leadership", "Cloud Computing", "Digital Transformation", "Strategic Planning"],
"profile_picture_url": "https://media.licdn.com/dms/image/example/satya-nadella-profile.jpg",
"email": "",
"phone": "",
"website": ""
}
}
}
Mail API
Email Reverse Lookup
Find LinkedIn profile information from an email address
POST
/
v1
/
data
/
mail
/
reverse
Email Reverse Lookup
curl --request POST \
--url https://api.linkupapi.com/v1/data/mail/reverse \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"email": "<string>"
}
'{
"status": "success",
"data": {
"email_parsed": {
"original_email": "[email protected]",
"first_name": "satya",
"last_name": "nadella",
"company_domain": "microsoft.com",
"parsing_confidence": "high"
},
"person_found": {
"public_id": "satya-nadella-3145678",
"first_name": "Satya",
"last_name": "Nadella",
"headline": "Chairman and CEO at Microsoft",
"location": "Redmond, Washington, United States",
"summary": "Passionate about empowering every person and organization on the planet to achieve more.",
"industry": "Technology",
"experience": [
{
"company": "Microsoft",
"title": "Chairman and CEO",
"description": "Leading Microsoft's mission to empower every person and every organization on the planet to achieve more.",
"start_date": "02/2014",
"end_date": "",
"company_url": "https://linkedin.com/company/microsoft",
"company_logo_url": "https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_400_400/0/1630652622688/microsoft_logo?e=1759968000&v=beta&t=example"
}
],
"education": [
{
"school": "University of Chicago Booth School of Business",
"degree": "MBA",
"field_of_study": "Business Administration"
}
],
"skills": ["Leadership", "Cloud Computing", "Digital Transformation", "Strategic Planning"],
"profile_picture_url": "https://media.licdn.com/dms/image/example/satya-nadella-profile.jpg",
"email": "",
"phone": "",
"website": ""
}
}
}
Find and extract LinkedIn profile information using an email address. This endpoint parses the email, extracts company information, and searches for the corresponding LinkedIn profile.
This endpoint costs 1 credit per request.
Header Parameters
Your API key
Body Parameters
Email address to reverse lookup (e.g., [email protected])
Response
Request status (success/error)
Show Properties
Show Properties
Show Email Parsing Results
Show Email Parsing Results
Show LinkedIn Profile Information
Show LinkedIn Profile Information
Public identifier of the LinkedIn profile
First name from LinkedIn profile
Last name from LinkedIn profile
Professional headline from LinkedIn
Geographic location
Profile summary (may be empty)
Industry sector
Array of education objects (may be empty)
Array of professional skills
URL to profile picture
Email address (if publicly available)
Phone number (if publicly available)
Personal website (if available)
{
"status": "success",
"data": {
"email_parsed": {
"original_email": "[email protected]",
"first_name": "satya",
"last_name": "nadella",
"company_domain": "microsoft.com",
"parsing_confidence": "high"
},
"person_found": {
"public_id": "satya-nadella-3145678",
"first_name": "Satya",
"last_name": "Nadella",
"headline": "Chairman and CEO at Microsoft",
"location": "Redmond, Washington, United States",
"summary": "Passionate about empowering every person and organization on the planet to achieve more.",
"industry": "Technology",
"experience": [
{
"company": "Microsoft",
"title": "Chairman and CEO",
"description": "Leading Microsoft's mission to empower every person and every organization on the planet to achieve more.",
"start_date": "02/2014",
"end_date": "",
"company_url": "https://linkedin.com/company/microsoft",
"company_logo_url": "https://media.licdn.com/dms/image/C560BAQE88xCsONDULQ/company-logo_400_400/0/1630652622688/microsoft_logo?e=1759968000&v=beta&t=example"
}
],
"education": [
{
"school": "University of Chicago Booth School of Business",
"degree": "MBA",
"field_of_study": "Business Administration"
}
],
"skills": ["Leadership", "Cloud Computing", "Digital Transformation", "Strategic Planning"],
"profile_picture_url": "https://media.licdn.com/dms/image/example/satya-nadella-profile.jpg",
"email": "",
"phone": "",
"website": ""
}
}
}
Notes
- The endpoint attempts to parse names and company information from the email address
- Parsing confidence indicates how reliable the name extraction was
Was this page helpful?
⌘I