> ## 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 Only To Email Waterfall

> Resolve contact email from LinkedIn URL only — no domain required. Use it to pilot on a few rows, verify the output, and scale the workflow safely.

In Claude Code, type:

```
/deepline-gtm Find the work email for linkedin.com/in/janesmith — I only have their LinkedIn
```

```
/deepline-gtm I have a list of LinkedIn URLs, no company info. Find emails for each.
```

<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["Deepline Native"]:::provider
  S2["Crustdata"]:::provider
  S3["Peopledatalabs"]:::provider
  S0 --> S1 --> S2 --> S3
  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.   |
| `last_name`    | `string` | Yes      | Contact last name.    |

## Cost

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

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