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())