2 credits per call
Method
Input
string
Company name
string
Company website URL
string
Location to narrow search
Output
Returnsstring | null - the LinkedIn company page URL if found.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Search for a company’s LinkedIn page URL
services.company.linkedin.findUrl(params);
string | null - the LinkedIn company page URL if found.
const linkedinUrl = await services.company.linkedin.findUrl({
companyName: ctx.thisRow.get("Company Name"),
website: ctx.thisRow.get("Website"),
});
return linkedinUrl;