Go back
HarvestAPI

HarvestAPI

v1 · 24 endpoints

HarvestAPI (24)

API Explorer

- credits
ColdIQ
APIs→HarvestAPI
Ctrl + O
Switch provider
Ctrl + P
Switch endpoint
API docs
GEThttps://api.coldiq.com/v1/harvestapi/linkedin/profile

Scrape a LinkedIn profile by URL, public identifier, or profile ID. `main=true` returns the lighter main profile; `findE…

Authentication

No API key - create one in the dashboard

Parameters

LinkedIn profile URL.

Public identifier of the profile (the last part of the profile URL).

LinkedIn profile ID.

Set to 'true' to return only the main version of the profile (up to 5 experiences, 2 educations, 2 skills). Charges less credit.

Set to 'true' to also find the profile's email. It performs SMTP verification and marks catch-all domains as `risky`. Charges more credit; the email part is not charged when the profile lacks the data to search.

Use together with `findEmail` to skip SMTP verification and return all generated candidate emails.

Also scrape the "About this profile" popup.

import requests

url = "https://api.coldiq.com/v1/harvestapi/linkedin/profile"

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

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