# LinkedIn URL Verification for CRM Data

**Use case:** 

Validate LinkedIn URLs in your CRM and update titles, companies, and locations for accurate data. Ensure data quality with exact URL matching.

## Input

```json
{
  "people": [
    {
      "firstName": "Nathan",
      "lastName": "Jolly",
      "company": "4 Pines Brewing Company Pty Ltd",
      "jobTitle": "",
      "linkedinUrl": "https://linkedin.com/in/nathan-jolly-45490b20b"
    }
  ],
  "peopleCsv": "firstName,lastName,company,jobTitle,linkedinUrl\nNathan,Jolly,4 Pines Brewing Company Pty Ltd,Brand Manager,\nJane,Doe,Acme Inc,VP Sales,",
  "matchStrategy": "linkedin_url",
  "maxPeople": 100
}
```

## Output

```json
{
  "firstName": {
    "label": "First name",
    "format": "string"
  },
  "lastName": {
    "label": "Last name",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "string"
  },
  "hasLinkedIn": {
    "label": "LinkedIn matched",
    "format": "boolean"
  },
  "matchType": {
    "label": "Match type",
    "format": "string"
  },
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "linkedinUrl": {
    "label": "LinkedIn URL",
    "format": "string"
  },
  "matchedCompany": {
    "label": "Matched company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

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