# Find Emails for Tech Founders

**Use case:** 

Find verified email addresses for any LinkedIn profile. Paste profile URLs and get names, companies, and contact emails in a clean dataset — export to CSV, JSON

## Input

```json
{
  "urls": [
    "https://www.linkedin.com/in/williamhgates/",
    "https://www.linkedin.com/in/mark-cuban-06a0755b/"
  ]
}
```

## Output

```json
{
  "linkedin_url": {
    "label": "LinkedIn URL",
    "format": "string"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "email": {
    "label": "Email",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Email Finder ⚡ Find Emails for LinkedIn Profiles](https://apify.com/vulnv/linkedin-email-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vulnv/linkedin-email-finder) to learn more, explore other use cases, and run it yourself.