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

# Ipqs Batch Email Verify: Inputs, Cost & CLI Example

> Screen up to 100 known emails for fraud, disposable-address use, honeypots, spam traps, and recent abuse after primary verification.

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

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

## Input Schema

| Name                       | Type          | Required | Default | Description                                                                                                                         |
| -------------------------- | ------------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| `payload.email_batch`      | `array`       | Yes      |         | Array of email objects to verify in batch (1-100). Deepline runs at most 5 IPQS checks concurrently, so larger batches can be slow. |
| `payload.timeout`          | `integer`     | No       |         | Maximum time in seconds to wait for SMTP response (1-60).                                                                           |
| `payload.fast`             | `boolean`     | No       |         | Skip SMTP checks for faster results.                                                                                                |
| `payload.strictness`       | `0 \| 1 \| 2` | No       |         | Strictness level 0-2. Higher = more false positives but catches more fraud.                                                         |
| `payload.abuse_strictness` | `0 \| 1 \| 2` | No       |         | Abuse detection strictness 0-2.                                                                                                     |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Verify up to 100 email addresses in one synthetic batch. Deepline runs at most 5 IPQS checks concurrently, so larger batches can be slow. 1 credit per email.",
    "properties": {
      "email_batch": {
        "type": "array",
        "description": "Array of email objects to verify in batch (1-100). Deepline runs at most 5 IPQS checks concurrently, so larger batches can be slow.",
        "minItems": 1,
        "maxItems": 100,
        "items": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string",
              "description": "Email address to verify.",
              "minLength": 1
            }
          },
          "required": [
            "email"
          ],
          "additionalProperties": false
        }
      },
      "timeout": {
        "type": "integer",
        "description": "Maximum time in seconds to wait for SMTP response (1-60).",
        "minimum": 1,
        "maximum": 60
      },
      "fast": {
        "type": "boolean",
        "description": "Skip SMTP checks for faster results."
      },
      "strictness": {
        "description": "Strictness level 0-2. Higher = more false positives but catches more fraud.",
        "anyOf": [
          {
            "type": "number",
            "const": 0
          },
          {
            "type": "number",
            "const": 1
          },
          {
            "type": "number",
            "const": 2
          }
        ]
      },
      "abuse_strictness": {
        "description": "Abuse detection strictness 0-2.",
        "anyOf": [
          {
            "type": "number",
            "const": 0
          },
          {
            "type": "number",
            "const": 1
          },
          {
            "type": "number",
            "const": 2
          }
        ]
      }
    },
    "required": [
      "email_batch"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name            | Type     | Required | Default | Description |
| --------------- | -------- | -------- | ------- | ----------- |
| `result.status` | `string` | Yes      |         |             |
| `result.result` | `object` | Yes      |         |             |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "status": {
        "type": "string"
      },
      "result": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "email_batch": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "valid": {
                      "type": "boolean"
                    },
                    "deliverability": {
                      "type": "string"
                    },
                    "disposable": {
                      "type": "boolean"
                    }
                  },
                  "required": [
                    "valid",
                    "deliverability",
                    "disposable"
                  ],
                  "additionalProperties": true
                }
              }
            },
            "required": [
              "email_batch"
            ],
            "additionalProperties": true
          }
        },
        "required": [
          "data"
        ],
        "additionalProperties": true
      }
    },
    "required": [
      "status",
      "result"
    ],
    "additionalProperties": true
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute ipqs_batch_email_verify --payload '{
  "email_batch": "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.07` per pricing unit.
* Billing mode: `post_deduct`.
