Skip to main content
2 credits per call

Method

services.person.linkedin.findUrl(params);

Input

name
string
Full name of the person
title
string
Job title
company
string
Company name
keyword
string
Additional keyword (industry, specialization, etc.)
email
string
Email address
location
string
Location string (city, state, country)

Output

Returns string | undefined - the LinkedIn profile URL if found.

Example

const linkedinUrl = await services.person.linkedin.findUrl({
  name: ctx.thisRow.get("Name"),
  company: ctx.thisRow.get("Company"),
  title: ctx.thisRow.get("Title"),
});

return linkedinUrl;