> ## 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.

# Dropleads Single Person Enrichment: Inputs, Cost & CLI

> Enriching one person directly from identifiers without a prior search result. Includes inputs, outputs, costs, and Deepline CLI examples for GTM automation.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=dropleads_single_person_enrichment:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                          | Type      | Required | Default | Description                                                                                                                                                                                                                                                        |
| ----------------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `payload.first_name`          | `string`  | No       |         |                                                                                                                                                                                                                                                                    |
| `payload.last_name`           | `string`  | No       |         |                                                                                                                                                                                                                                                                    |
| `payload.name`                | `string`  | No       |         |                                                                                                                                                                                                                                                                    |
| `payload.email`               | `string`  | No       |         |                                                                                                                                                                                                                                                                    |
| `payload.domain`              | `string`  | No       |         |                                                                                                                                                                                                                                                                    |
| `payload.linkedin_url`        | `string`  | No       |         | LinkedIn profile URL. Best identifier for Dropleads enrich. Less is more here: if you have linkedin\_url, prefer sending only linkedin\_url and omit the other person/company fields. Deepline also ignores organization\_name upstream to avoid live mis-matches. |
| `payload.title`               | `string`  | No       |         |                                                                                                                                                                                                                                                                    |
| `payload.reveal_phone_number` | `boolean` | No       |         | Set true to request phone reveal at additional credit cost.                                                                                                                                                                                                        |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Enrich one person from identifying fields. Less is more: if you have linkedin_url, use just linkedin_url.",
    "properties": {
      "first_name": {
        "type": "string"
      },
      "last_name": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "email": {
        "type": "string"
      },
      "domain": {
        "type": "string"
      },
      "linkedin_url": {
        "type": "string",
        "description": "LinkedIn profile URL. Best identifier for Dropleads enrich. Less is more here: if you have linkedin_url, prefer sending only linkedin_url and omit the other person/company fields. Deepline also ignores organization_name upstream to avoid live mis-matches."
      },
      "title": {
        "type": "string"
      },
      "reveal_phone_number": {
        "type": "boolean",
        "description": "Set true to request phone reveal at additional credit cost."
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name             | Type      | Required | Default | Description                        |
| ---------------- | --------- | -------- | ------- | ---------------------------------- |
| `result.success` | `boolean` | No       |         |                                    |
| `result.status`  | `string`  | No       |         |                                    |
| `result.person`  | `object`  | No       |         | Dropleads enriched person payload. |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Dropleads single person enrichment raw tool output.",
    "properties": {
      "success": {
        "type": "boolean"
      },
      "status": {
        "type": "string"
      },
      "person": {
        "type": "object",
        "description": "Dropleads enriched person payload.",
        "properties": {
          "id": {
            "type": "string"
          },
          "first_name": {
            "type": "string"
          },
          "last_name": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "organization_name": {
            "type": "string"
          },
          "organization_domain": {
            "type": "string"
          },
          "company_name": {
            "type": "string"
          },
          "company_domain": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          },
          "linkedin_url": {
            "type": "string"
          }
        },
        "additionalProperties": false
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute dropleads_single_person_enrichment --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Provider API Context

<details>
  <summary>Show provider reference (optional)</summary>

  ```md theme={null}
  Enrich data for 1 person by providing identifying information. 
  **Always returns email (1 credit). Phone number optional (3 additional credits if reveal_phone_number=true)**.

  **Minimum Required Combinations:**
  - LinkedIn URL alone (best accuracy)
  - Email + Organization Name
  - Name (first_name + last_name OR full name) + Organization Name
  - Name + Domain

  **Note:** Sending only domain or only name will not return results.
  ```
</details>

## Cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `0.26` per pricing unit.
* Billing mode: `post_deduct`.
