> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Person Linkedin To Email Waterfall

> Resolve contact email from a LinkedIn profile URL only. Shows the exact input shape, output fields, cost notes, and Deepline CLI examples.

In Claude Code, type:

```
/deepline-gtm Find the work email for this LinkedIn profile: linkedin.com/in/janesmith — she's at acme.com
```

```
/deepline-gtm I have a CSV with LinkedIn URLs and domains. Find work emails for each person.
```

<Accordion title="CLI command">
  ```bash theme={null}
  deepline enrich --with '{"alias":"email","tool":"person-linkedin-to-email","payload":{"linkedin_url":"https://linkedin.com/in/janesmith"}}'
  ```
</Accordion>

## How It Works

Providers are tried left to right. The first one to return a result wins — the rest are skipped.

```mermaid theme={null}
flowchart LR
  S0["Dropleads"]:::provider
  S1["Hunter"]:::provider
  S2["Leadmagic"]:::provider
  S3["Deepline Native"]:::provider
  S4["Crustdata"]:::provider
  S5["Peopledatalabs"]:::provider
  S0 --> S1 --> S2 --> S3 --> S4 --> S5
  classDef provider fill:#1e293b,stroke:#475569,color:#e2e8f0
```

## Parameters

| Name           | Type     | Required | Description                                                                          |
| -------------- | -------- | -------- | ------------------------------------------------------------------------------------ |
| `linkedin_url` | `string` | Yes      | LinkedIn profile URL.                                                                |
| `first_name`   | `string` | Yes      | Contact first name required for deterministic fallback providers.                    |
| `last_name`    | `string` | Yes      | Contact last name required for deterministic fallback providers.                     |
| `company_name` | `string` | No       | Optional company name hint for deterministic fallback providers.                     |
| `domain`       | `string` | Yes      | Company domain (for example ramp.com) required for deterministic fallback providers. |

## Cost

**0-7 credits** — waterfalls stop at the first match, so you only pay for the provider that returns a result.

| Step            | Max Credits |
| --------------- | ----------- |
| Dropleads       | 0.3         |
| Hunter          | 0.3         |
| Leadmagic       | 0.3         |
| Deepline Native | 1           |
| Crustdata       | 1.2         |
| Peopledatalabs  | 3.9         |
