> ## 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 Company Contacts Search: Inputs, Cost & CLI

> Dataset search by company URL. 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=quickenrich_company_contacts_search:{"company_url":"{{company_url}}"}' --json
```

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

## Input Schema

| Name                  | Type      | Required | Default | Description                                                |
| --------------------- | --------- | -------- | ------- | ---------------------------------------------------------- |
| `payload.company_url` | `string`  | Yes      |         |                                                            |
| `payload.title`       | `string`  | No       |         | Single title or comma-separated titles (e.g. "CEO, CFO").  |
| `payload.page`        | `integer` | No       | `1`     |                                                            |
| `payload.has_email`   | `boolean` | No       |         | When true, only contacts with a real email in the dataset. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Search by normalized company URL. Returns up to 20 contacts per page.",
    "properties": {
      "company_url": {
        "type": "string"
      },
      "title": {
        "type": "string",
        "description": "Single title or comma-separated titles (e.g. \"CEO, CFO\").",
        "maxLength": 255
      },
      "page": {
        "type": "integer",
        "default": 1,
        "minimum": 1
      },
      "has_email": {
        "type": "boolean",
        "description": "When true, only contacts with a real email in the dataset."
      }
    },
    "required": [
      "company_url"
    ],
    "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": {
          "success": {
            "type": "boolean"
          },
          "message": {
            "type": "string"
          },
          "code": {
            "type": "integer"
          },
          "data": {
            "type": "array",
            "items": {
              "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": {
              "page": {
                "type": "integer"
              },
              "per_page": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              },
              "last_page": {
                "type": "integer"
              },
              "reason": {
                "type": "string"
              }
            },
            "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_company_contacts_search --payload '{
  "company_url": "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.06` per pricing unit.
* Billing mode: `post_deduct`.
