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

# Contactout Get Hashed Email Identifiers: Inputs, Cost &

> Resolve 5–100 LinkedIn profile URLs into hashed email identifiers for privacy-safe audience matching. 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=contactout_get_hashed_email_identifiers:{"profiles":"{{profiles}}"}' --json
```

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

## Input Schema

| Name               | Type    | Required | Default | Description                                                     |
| ------------------ | ------- | -------- | ------- | --------------------------------------------------------------- |
| `payload.profiles` | `array` | Yes      |         | LinkedIn profile URLs to resolve into hashed email identifiers. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Return hashed email identifiers for 5 to 100 LinkedIn profile URLs. Consumes one email credit for each matched profile, including profiles with multiple returned hashes.",
    "properties": {
      "profiles": {
        "type": "array",
        "description": "LinkedIn profile URLs to resolve into hashed email identifiers.",
        "minItems": 5,
        "maxItems": 100,
        "items": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "required": [
      "profiles"
    ],
    "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": {
          "status_code": {
            "type": "integer"
          },
          "matches": {
            "type": "object",
            "properties": {
              "emails": {
                "type": "array",
                "description": "Hashed email identifiers returned for matched profiles. One matched profile may return multiple hashes, so this array length is NOT the matched-profile count.",
                "items": {
                  "type": "string",
                  "pattern": "^[a-f0-9]{64}$"
                }
              }
            },
            "required": [
              "emails"
            ],
            "additionalProperties": false
          },
          "matches_found": {
            "type": "integer",
            "description": "Exact count of matched profiles for this request. This is the billing signal: ContactOut consumes one email credit per matched profile regardless of how many hashes that profile returns.",
            "minimum": 0
          }
        },
        "required": [
          "status_code",
          "matches",
          "matches_found"
        ],
        "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 contactout_get_hashed_email_identifiers --payload '{
  "profiles": "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.56` per pricing unit.
* Billing mode: `post_deduct`.
