# Find LinkedIn Company URLs from Startup Websites

**Use case:** 

Check public startup websites and fallback search results to return LinkedIn company URLs, evidence URLs, status, and confidence.

## Input

```json
{
  "domains": [
    "https://www.notion.so",
    "figma.com",
    "linear.app"
  ],
  "includeSearchFallback": true,
  "maxPagesPerDomain": 5,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "inputDomain": {
    "label": "Input domain",
    "format": "text"
  },
  "normalizedDomain": {
    "label": "Normalized domain",
    "format": "text"
  },
  "linkedinUrl": {
    "label": "LinkedIn URL",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "evidenceType": {
    "label": "Evidence type",
    "format": "text"
  },
  "evidenceUrl": {
    "label": "Evidence URL",
    "format": "link"
  },
  "homepageUrl": {
    "label": "Homepage",
    "format": "link"
  },
  "checkedUrls": {
    "label": "Checked URLs",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  },
  "resolvedAt": {
    "label": "Resolved at",
    "format": "date"
  }
}
```

## About this Actor

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