Go back
LinkUp API

LinkUp API

v1 · 10 endpoints

LinkUp API (10)

API Explorer

— credits
ColdIQ
APIs→LinkUp API
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/linkupapi/data/profil/enrich6.3 cr

Find and enrich a person's LinkedIn profile using their name and company. Returns full profile data including experience…

Authentication

No API key — create one in the dashboard

Body

Person's first name

Person's last name

Current company name

import requests

url = "https://api.coldiq.com/v1/linkupapi/data/profil/enrich"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())