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

# Builtwith Lists: Inputs, Cost & CLI Example

> Building account lists of sites that currently use a specific technology. Includes inputs, outputs, costs, and Deepline CLI examples for GTM automation.

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

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

## Input Schema

| Name                         | Type      | Required | Default | Description                                                                        |
| ---------------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------------------- |
| `payload.tech`               | `string`  | Yes      |         | Technology name to search for (for example Shopify).                               |
| `payload.include_meta`       | `boolean` | No       |         | Include names, titles, social links, addresses, emails, phones, and rank metadata. |
| `payload.countries`          | `array`   | No       |         | Optional ISO alpha-2 country filters. BuiltWith uses UK instead of GB.             |
| `payload.since`              | `string`  | No       |         | Only return sites live since a date or relative time expression.                   |
| `payload.include_historical` | `boolean` | No       |         | Include non-live historical sites. Cannot be combined with since.                  |
| `payload.offset`             | `string`  | No       |         | BuiltWith pagination token from the previous response NextOffset field.            |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List websites using a specific technology, with optional pagination and country filters.",
    "properties": {
      "tech": {
        "type": "string",
        "description": "Technology name to search for (for example Shopify)."
      },
      "include_meta": {
        "type": "boolean",
        "description": "Include names, titles, social links, addresses, emails, phones, and rank metadata."
      },
      "countries": {
        "type": "array",
        "description": "Optional ISO alpha-2 country filters. BuiltWith uses UK instead of GB.",
        "items": {
          "type": "string"
        }
      },
      "since": {
        "type": "string",
        "description": "Only return sites live since a date or relative time expression."
      },
      "include_historical": {
        "type": "boolean",
        "description": "Include non-live historical sites. Cannot be combined with since."
      },
      "offset": {
        "type": "string",
        "description": "BuiltWith pagination token from the previous response NextOffset field."
      }
    },
    "required": [
      "tech"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `record` | 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": {
          "NextOffset": {
            "type": "string"
          },
          "Results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "D": {
                  "type": "string"
                },
                "FI": {
                  "type": "number"
                },
                "LI": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": {}
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute builtwith_lists --payload '{
  "tech": "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: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
