> ## Documentation Index
> Fetch the complete documentation index at: https://orangeslice.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Find Company LinkedIn URL

> Search for a company's LinkedIn page URL

<Info>
  <Icon icon="coins" /> **2 credits** per call
</Info>

## Method

```typescript theme={null}
services.company.linkedin.findUrl(params);
```

## Input

<ParamField path="companyName" type="string" optional>
  Company name
</ParamField>

<ParamField path="website" type="string" optional>
  Company website URL
</ParamField>

<ParamField path="location" type="string" optional>
  Location to narrow search
</ParamField>

## Output

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

## Example

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

return linkedinUrl;
```
