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": "satya.nadella@microsoft.com",
      "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

x-api-key
string
required
Your API key

Body Parameters

email
string
required
Email address to reverse lookup (e.g., satya.nadella@microsoft.com)

Response

status
string
Request status (success/error)
data
object
{
  "status": "success",
  "data": {
    "email_parsed": {
      "original_email": "satya.nadella@microsoft.com",
      "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