Skip to main content
2 credits per call

Method

services.company.linkedin.findUrl(params);

Input

companyName
string
Company name
website
string
Company website URL
location
string
Location to narrow search

Output

Returns string | null - the LinkedIn company page URL if found.

Example

const linkedinUrl = await services.company.linkedin.findUrl({
  companyName: ctx.thisRow.get("Company Name"),
  website: ctx.thisRow.get("Website"),
});

return linkedinUrl;