# Microsoft Executive LinkedIn URL Extractor

**Use case:** 

Extract likely LinkedIn profile URLs for Microsoft executives using public search results, confidence scores, and match reasons.

## Input

```json
{
  "people": [
    {
      "fullName": "Satya Nadella",
      "company": "Microsoft",
      "domain": "microsoft.com",
      "title": "Chairman and CEO",
      "location": "Redmond"
    },
    {
      "fullName": "Amy Hood",
      "company": "Microsoft",
      "domain": "microsoft.com",
      "title": "Chief Financial Officer",
      "location": "Redmond"
    }
  ],
  "maxCandidates": 5,
  "includeCandidates": true,
  "requestDelayMs": 500
}
```

## Output

```json
{
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "bestProfileUrl": {
    "label": "Best profile URL",
    "format": "string"
  },
  "confidence": {
    "label": "Confidence",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "candidateCount": {
    "label": "Candidates",
    "format": "integer"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "reasons": {
    "label": "Reasons",
    "format": "array"
  },
  "searchedAt": {
    "label": "Searched at",
    "format": "string"
  }
}
```

## About this Actor

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