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

# Ai Ark Mobile Phone Finder: Inputs, Cost & CLI Example

> Find a mobile or direct phone number by LinkedIn URL, or by name plus company domain. Includes inputs, outputs, costs, and Deepline 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=ai_ark_mobile_phone_finder:{}' --json
```

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

## Input Schema

| Name               | Type                   | Required | Default    | Description                                                                             |
| ------------------ | ---------------------- | -------- | ---------- | --------------------------------------------------------------------------------------- |
| `payload.linkedin` | `string`               | No       |            | LinkedIn profile URL.                                                                   |
| `payload.domain`   | `string`               | No       |            | Company domain; required when using name-based lookup.                                  |
| `payload.name`     | `string`               | No       |            | Full name; required when using domain-based lookup.                                     |
| `payload.type`     | `"MOBILE" \| "DIRECT"` | No       | `"MOBILE"` | Legacy phone type selector. Accepted for compatibility and omitted from the V2 request. |

### Allowed values

| Field          | Allowed values     |
| -------------- | ------------------ |
| `payload.type` | `MOBILE`, `DIRECT` |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Find a mobile phone number from LinkedIn or from name plus domain.",
    "properties": {
      "linkedin": {
        "type": "string",
        "description": "LinkedIn profile URL."
      },
      "domain": {
        "type": "string",
        "description": "Company domain; required when using name-based lookup."
      },
      "name": {
        "type": "string",
        "description": "Full name; required when using domain-based lookup."
      },
      "type": {
        "type": "string",
        "description": "Legacy phone type selector. Accepted for compatibility and omitted from the V2 request.",
        "default": "MOBILE",
        "enum": [
          "MOBILE",
          "DIRECT"
        ]
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type      | Required | Default | Description                                    |
| ------------- | --------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `unknown` | 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": {
        "description": "Provider response payload."
      },
      "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 ai_ark_mobile_phone_finder --payload '{}' --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: `fixed` (per call).
* Estimated Deepline credits: `0.7` per pricing unit.
* Billing mode: `post_deduct`.
