> ## 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 Name Domain To Linkedin Url

> Generated play that resolves person linkedin url from first name, last name, and domain. Includes inputs, outputs, costs, and Deepline CLI examples.

```bash theme={null}
deepline tools execute deepline_native:person_name_domain_to_linkedin_url \
  --payload '{"first_name":"<first_name>","last_name":"<last_name>","domain":"<domain>"}'
```

## 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["Serper: Serper Linkedin Search Domain"]:::provider
  S2["Prospeo"]:::provider
  S3["Crustdata *"]:::provider
  S4["Serper: Serper Linkedin Identity Validate"]:::provider
  S0 --> S1 --> S2 --> S3 --> S4
  classDef provider fill:#1e293b,stroke:#475569,color:#e2e8f0
```

*\* Only runs when optional fields are provided.*

## Parameters

| Name           | Type     | Required | Description                            |
| -------------- | -------- | -------- | -------------------------------------- |
| `first_name`   | `string` | Yes      | Contact first name.                    |
| `last_name`    | `string` | Yes      | Contact last name.                     |
| `domain`       | `string` | Yes      | Company domain.                        |
| `company_name` | `string` | No       | Optional company name context.         |
| `email`        | `string` | No       | Optional known email context.          |
| `linkedin_url` | `string` | No       | Optional LinkedIn profile URL context. |

## Cost

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

| Step                                      | Max Credits |
| ----------------------------------------- | ----------- |
| Serper: Serper Linkedin Search Domain     | 0           |
| Prospeo                                   | 0.6         |
| Crustdata                                 | 0.4         |
| Serper: Serper Linkedin Identity Validate | 0           |
