Skip to main content
5 credits per profile

Method

services.person.linkedin.enrich(params);

Input

url
string
LinkedIn profile URL to enrich
username
string
LinkedIn username
id
number
CoreSignal employee ID
At least one of url, username, or id must be provided.

Output

id
number
CoreSignal employee ID
full_name
string
Complete name
name_first
string
First name
name_last
string
Last name
headline
string
Professional headline
job_title
string
Current job title
company_id
number
Current company ID
description
string
Profile summary/about section
picture_url
string
Profile picture URL
websites_linkedin
string
LinkedIn profile URL
follower_count
number
Number of followers
connections_count
number
Number of connections
skills
string[]
Array of skills
location_city
string
City
location_state
string
State/region
location_country
string
Country
department
string
Department/function
management_level
string
Management level (e.g., “Senior”, “Manager”)
experience
array
Work history with company enrichment data
education
array
Education entries
certifications
array
Professional certifications
languages
array
Languages and proficiency

Example

const profile = await services.person.linkedin.enrich({
  url: ctx.thisRow.get("LinkedIn URL"),
});

return profile.job_title;