> ## 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 Url Context To Job History

> Generated play that resolves person job history from LinkedIn URL plus context. Includes inputs, outputs, costs, and Deepline CLI examples for GTM automation.

```bash theme={null}
deepline tools execute deepline_native:person_linkedin_url_context_to_job_history \
  --payload '{"linkedin_url":"<linkedin_url>"}'
```

## 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["Linkedin Scraper *"]:::provider
  S1["Datagma *"]:::provider
  S2["Prospeo *"]:::provider
  S3["Crustdata V2: Crustdata V2 Linkedin Job History *"]:::provider
  S4["Crustdata V2: Crustdata V2 Email Job History *"]:::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                  |
| -------------- | -------- | -------- | ---------------------------- |
| `linkedin_url` | `string` | Yes      | LinkedIn person profile URL. |
| `first_name`   | `string` | No       |                              |
| `last_name`    | `string` | No       |                              |
| `domain`       | `string` | No       |                              |
| `company_name` | `string` | No       |                              |
| `email`        | `string` | No       |                              |

## Cost

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

| Step                                            | Max Credits |
| ----------------------------------------------- | ----------- |
| Linkedin Scraper                                | 0           |
| Datagma                                         | 0.3         |
| Prospeo                                         | 0.6         |
| Crustdata V2: Crustdata V2 Linkedin Job History | 0.4         |
| Crustdata V2: Crustdata V2 Email Job History    | 0.4         |
