POST
/
v1
/
data
/
profil
/
enrich
curl --request POST \
  --url https://api.linkupapi.com/v1/data/profil/enrich \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "first_name": "<string>",
  "last_name": "<string>",
  "company_name": "<string>"
}'
{
  "status": "success",
  "data": {
    "person_searched": {
      "first_name": "Jeremy",
      "last_name": "Goillot",
      "company_name": "The Mobile-First Company"
    },
    "linkedin_profile": {
      "linkedin_url": "https://www.linkedin.com/in/jeremygoillot",
      "profile_title": "Jeremy Goillot - CEO @The Mobile-First Company",
      "profile_description": "CEO & Co-Founder at The Mobile-First Company"
    },
    "full_profile_data": {
      "public_id": "jeremygoillot",
      "first_name": "Jeremy",
      "last_name": "Goillot",
      "headline": "CEO @The Mobile-First Company \n Your Business, in your Pocket |  Angel Investor in +40 startups",
      "location": "France",
      "summary": "NO EMAIL \nPhone Call Only >> 06 44 60 39 99\n\nBuilding @The Mobile-First Company\nOur goal is clear: Turn your phone into your primary business tool...",
      "industry": "Technologie, information et Internet",
      "experience": [
        {
          "company": "The Mobile-First Company",
          "title": "CEO & Co-Founder",
          "description": "Your Business, in your Pocket. Mobile Apps for Every Need...",
          "start_date": "9/2023",
          "end_date": ""
        }
      ],
      "education": [
        {
          "school": "Le Wagon",
          "degree": "FullStack Developer",
          "field_of_study": "Web Development",
          "start_date": "2016",
          "end_date": "2016"
        }
      ],
      "skills": ["Allo", " Build a Fintech Unicorn (from 0 to 1B$)", " Build Growth Team for Early Stage Startups"],
      "profile_picture_url": "https://media.licdn.com/dms/image/v2/D4E03AQGNeGf5rNxHfw/profile-displayphoto-shrink_800_800/...",
      "email": "",
      "phone": "",
      "website": ""
    }
  }
}

Automatically find a person’s LinkedIn profile using their name and company, then extract complete profile information in a single request. This endpoint combines profile search and data extraction in one seamless process.

This endpoint costs 1 credit per request.

Process Overview

The enrichment process follows these 3 steps:

  1. Google Search (primary method) - Search for LinkedIn profiles using Google
  2. LinkedIn API Search (fallback) - Direct LinkedIn search if Google fails
  3. Complete Profile Extraction - Extract detailed information from the found profile

Header Parameters

x-api-key
string
required

Your API key

Body Parameters

first_name
string
required

Person’s first name

last_name
string
required

Person’s last name

company_name
string
required

Current company name where the person works

Response

status
string

Request status (success/error)

data
object
{
  "status": "success",
  "data": {
    "person_searched": {
      "first_name": "Jeremy",
      "last_name": "Goillot",
      "company_name": "The Mobile-First Company"
    },
    "linkedin_profile": {
      "linkedin_url": "https://www.linkedin.com/in/jeremygoillot",
      "profile_title": "Jeremy Goillot - CEO @The Mobile-First Company",
      "profile_description": "CEO & Co-Founder at The Mobile-First Company"
    },
    "full_profile_data": {
      "public_id": "jeremygoillot",
      "first_name": "Jeremy",
      "last_name": "Goillot",
      "headline": "CEO @The Mobile-First Company \n Your Business, in your Pocket |  Angel Investor in +40 startups",
      "location": "France",
      "summary": "NO EMAIL \nPhone Call Only >> 06 44 60 39 99\n\nBuilding @The Mobile-First Company\nOur goal is clear: Turn your phone into your primary business tool...",
      "industry": "Technologie, information et Internet",
      "experience": [
        {
          "company": "The Mobile-First Company",
          "title": "CEO & Co-Founder",
          "description": "Your Business, in your Pocket. Mobile Apps for Every Need...",
          "start_date": "9/2023",
          "end_date": ""
        }
      ],
      "education": [
        {
          "school": "Le Wagon",
          "degree": "FullStack Developer",
          "field_of_study": "Web Development",
          "start_date": "2016",
          "end_date": "2016"
        }
      ],
      "skills": ["Allo", " Build a Fintech Unicorn (from 0 to 1B$)", " Build Growth Team for Early Stage Startups"],
      "profile_picture_url": "https://media.licdn.com/dms/image/v2/D4E03AQGNeGf5rNxHfw/profile-displayphoto-shrink_800_800/...",
      "email": "",
      "phone": "",
      "website": ""
    }
  }
}

Notes

  • The endpoint tries multiple search methods to maximize success rate
  • If no profile is found, linkedin_profile and full_profile_data will be null
  • Profile data extraction depth depends on the profile’s privacy settings
  • The response includes all publicly available information when a profile is found
  • Contact information (email, phone) may be empty depending on profile privacy settings
  • The enrichment process respects LinkedIn’s fair usage policies