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

# Quickenrich Employee Email Enrich: Inputs, Cost & CLI

> Enrich employee (email). Quickenrich Quickenrich Employee Email Enrich docs include request fields, response shape, pricing notes, and Deepline CLI examples.

## 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=quickenrich_employee_email_enrich:{}' --json
```

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

## Input Schema

| Name                   | Type     | Required | Default | Description                                                                      |
| ---------------------- | -------- | -------- | ------- | -------------------------------------------------------------------------------- |
| `payload.linkedin_url` | `string` | No       |         | LinkedIn profile URL. Provide this OR (company\_url + first\_name + last\_name). |
| `payload.company_url`  | `string` | No       |         | Company website URL or domain (normalized server-side).                          |
| `payload.first_name`   | `string` | No       |         |                                                                                  |
| `payload.last_name`    | `string` | No       |         |                                                                                  |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Search by LinkedIn URL and/or company + name. Returns one employee record.",
    "properties": {
      "linkedin_url": {
        "type": "string",
        "description": "LinkedIn profile URL. Provide this OR (company_url + first_name + last_name).",
        "format": "uri"
      },
      "company_url": {
        "type": "string",
        "description": "Company website URL or domain (normalized server-side)."
      },
      "first_name": {
        "type": "string",
        "maxLength": 255
      },
      "last_name": {
        "type": "string",
        "maxLength": 255
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "description": "Provider response payload.",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "success": {
                "type": "boolean"
              },
              "message": {
                "type": "string"
              },
              "code": {
                "type": "integer"
              },
              "data": {
                "type": "object",
                "properties": {
                  "first_name": {
                    "type": "string"
                  },
                  "last_name": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  },
                  "email": {
                    "type": "string"
                  },
                  "employee_phone": {
                    "type": "string"
                  },
                  "employee_phone_type": {
                    "type": "string"
                  },
                  "employee_linkedin": {
                    "type": "string"
                  },
                  "email_verification_date": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "format": "date"
                  },
                  "company_url": {
                    "type": "string"
                  },
                  "company_name": {
                    "type": "string"
                  },
                  "email_domain": {
                    "type": "string"
                  },
                  "company_linked": {
                    "type": "string"
                  },
                  "company_phone": {
                    "type": "string"
                  },
                  "industry": {
                    "type": "string"
                  },
                  "revenue": {
                    "type": "string"
                  },
                  "employee_count": {
                    "type": "string"
                  },
                  "address": {
                    "type": "string"
                  },
                  "city": {
                    "type": "string"
                  },
                  "region_code": {
                    "type": "string"
                  },
                  "zip": {
                    "type": "string"
                  },
                  "country_code": {
                    "type": "string"
                  }
                },
                "additionalProperties": false
              },
              "meta": {
                "type": "object",
                "properties": {
                  "reason": {
                    "type": "string",
                    "description": "Present on empty/not-found success responses.",
                    "enum": [
                      "EMPLOYEE_NOT_FOUND",
                      "EMAIL_NOT_FOUND",
                      "PHONE_NOT_FOUND",
                      "COMPANY_NOT_FOUND"
                    ]
                  }
                },
                "additionalProperties": false
              }
            },
            "required": [
              "success",
              "message",
              "code"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "success": {
                "type": "boolean"
              },
              "message": {
                "type": "string"
              },
              "code": {
                "type": "integer"
              },
              "data": {
                "type": "array",
                "maxItems": 0,
                "items": {}
              },
              "meta": {
                "type": "object",
                "properties": {
                  "reason": {
                    "type": "string"
                  }
                },
                "required": [],
                "additionalProperties": false
              }
            },
            "required": [
              "success",
              "message",
              "code"
            ],
            "additionalProperties": false
          }
        ]
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute quickenrich_employee_email_enrich --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.                      |

## Cost

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