Skip to main content

Documentation Index

Fetch the complete documentation index at: https://orangeslice.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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;