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

# Wizleads Find Email: Inputs, Cost & CLI Example

> Fallback work-email lookup for an exact person name plus known company website when WizLeads is explicitly selected. Includes inputs, outputs, and 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=wizleads_find_email:{"first_name":"{{first_name}}"}' --json
```

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

## Input Schema

| Name                      | Type     | Required | Default | Description                                              |
| ------------------------- | -------- | -------- | ------- | -------------------------------------------------------- |
| `payload.first_name`      | `string` | Yes      |         | First name or full name.                                 |
| `payload.last_name`       | `string` | No       |         | Last name.                                               |
| `payload.website`         | `string` | No       |         | Company website.                                         |
| `payload.domain`          | `string` | No       |         | Deepline alias for website. Sent to WizLeads as website. |
| `payload.company_domain`  | `string` | No       |         | Deepline alias for website. Sent to WizLeads as website. |
| `payload.company_website` | `string` | No       |         | Deepline alias for website. Sent to WizLeads as website. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Find a professional email address given a person's name and company website. All emails are valid and catch-all verified.",
    "properties": {
      "first_name": {
        "type": "string",
        "description": "First name or full name."
      },
      "last_name": {
        "type": "string",
        "description": "Last name."
      },
      "website": {
        "type": "string",
        "description": "Company website."
      },
      "domain": {
        "type": "string",
        "description": "Deepline alias for website. Sent to WizLeads as website."
      },
      "company_domain": {
        "type": "string",
        "description": "Deepline alias for website. Sent to WizLeads as website."
      },
      "company_website": {
        "type": "string",
        "description": "Deepline alias for website. Sent to WizLeads as website."
      }
    },
    "required": [
      "first_name"
    ],
    "anyOf": [
      {
        "required": [
          "website"
        ]
      },
      {
        "required": [
          "domain"
        ]
      },
      {
        "required": [
          "company_domain"
        ]
      },
      {
        "required": [
          "company_website"
        ]
      }
    ],
    "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": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "normalized_fname": {
            "type": [
              "string",
              "null"
            ]
          },
          "normalized_lname": {
            "type": [
              "string",
              "null"
            ]
          },
          "email": {
            "type": [
              "string",
              "null"
            ]
          },
          "provider": {
            "type": [
              "string",
              "null"
            ]
          },
          "catchall": {
            "type": "string"
          },
          "error": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "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 wizleads_find_email --payload '{
  "first_name": "string"
}' --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.04` per pricing unit.
* Billing mode: `post_deduct`.
