# Get LinkedIn Company URL From Company Name

**Use case:** 

Resolve a company LinkedIn URL from its name alone, no domain needed. Returns the URL, slug, and confidence as Clay-ready flat JSON.

## Input

```json
{
  "company_domain": "stripe.com",
  "company_name": "Stripe",
  "includeFirmographics": "false",
  "skipCache": "false"
}
```

## Output

```json
{
  "company_domain": {
    "label": "Company Domain",
    "format": "string"
  },
  "company_name": {
    "label": "Company Name",
    "format": "string"
  },
  "linkedin_company_url": {
    "label": "LinkedIn Company URL",
    "format": "string"
  },
  "linkedin_slug": {
    "label": "LinkedIn Slug",
    "format": "string"
  },
  "resolution_method": {
    "label": "Resolution Method",
    "format": "string"
  },
  "confidence": {
    "label": "Confidence",
    "format": "string"
  },
  "slug_mismatch": {
    "label": "Slug Mismatch",
    "format": "boolean"
  },
  "employee_count_approx": {
    "label": "Employee Count (approx)",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Domain to LinkedIn URL Resolver Clay-Ready Company URL](https://apify.com/mambalabs/domain-to-linkedin-url-resolver) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/domain-to-linkedin-url-resolver) to learn more, explore other use cases, and run it yourself.