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

# Fullenrich Reverse Email: Inputs, Cost & CLI Example

> Submitting up to 100 emails for async reverse email lookup. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## 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=fullenrich_reverse_email:{"name":"{{name}}","data":"{{data}}"}' --json
```

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

## Input Schema

| Name                          | Type      | Required | Default | Description                                                                                                                                     |
| ----------------------------- | --------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.name`                | `string`  | Yes      |         | Readable reverse lookup batch name shown in the FullEnrich dashboard.                                                                           |
| `payload.webhook_url`         | `string`  | No       |         | Optional webhook URL triggered by FullEnrich when the batch finishes.                                                                           |
| `payload.wait_for_completion` | `boolean` | No       | `true`  | When true or omitted, wait for the FullEnrich batch to finish and return terminal rows. Set false to return only the async launcher response.   |
| `payload.poll_interval_ms`    | `integer` | No       | `2000`  | Polling interval used while wait\_for\_completion is true. Defaults to 2000 ms.                                                                 |
| `payload.max_wait_ms`         | `integer` | No       | `30000` | Maximum time to wait for a terminal FullEnrich result. Defaults to 30000 ms; larger values are clamped to the Deepline async sync-wait ceiling. |
| `payload.data`                | `array`   | Yes      |         |                                                                                                                                                 |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Submit up to 100 emails for asynchronous FullEnrich reverse email lookup.",
    "properties": {
      "name": {
        "type": "string",
        "description": "Readable reverse lookup batch name shown in the FullEnrich dashboard."
      },
      "webhook_url": {
        "type": "string",
        "description": "Optional webhook URL triggered by FullEnrich when the batch finishes."
      },
      "wait_for_completion": {
        "type": "boolean",
        "description": "When true or omitted, wait for the FullEnrich batch to finish and return terminal rows. Set false to return only the async launcher response.",
        "default": true
      },
      "poll_interval_ms": {
        "type": "integer",
        "description": "Polling interval used while wait_for_completion is true. Defaults to 2000 ms.",
        "default": 2000,
        "minimum": 250,
        "maximum": 10000
      },
      "max_wait_ms": {
        "type": "integer",
        "description": "Maximum time to wait for a terminal FullEnrich result. Defaults to 30000 ms; larger values are clamped to the Deepline async sync-wait ceiling.",
        "default": 30000,
        "minimum": 1000,
        "maximum": 120000
      },
      "data": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string"
            },
            "custom": {
              "type": "object",
              "additionalProperties": {
                "type": "string"
              }
            }
          },
          "additionalProperties": false
        }
      }
    },
    "required": [
      "name",
      "data"
    ],
    "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": {
          "enrichment_id": {
            "type": "string",
            "format": "uuid"
          }
        },
        "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 fullenrich_reverse_email --payload '{
  "name": "string",
  "data": "array"
}' --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.84` per pricing unit.
* Billing mode: `post_deduct`.
