> ## 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 Domain Lookup: Inputs, Cost & CLI Example

> Inspecting current or historical technologies, metadata, and spend signals for one domain or a small multi-domain set. Builtwith Builtwith Domain Lookup docs

## 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_domain_lookup:{}' --json
```

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

## Input Schema

| Name                           | Type      | Required | Default | Description                                                                        |
| ------------------------------ | --------- | -------- | ------- | ---------------------------------------------------------------------------------- |
| `payload.domain`               | `string`  | No       |         | Root domain or subdomain to inspect (for example stripe.com).                      |
| `payload.domains`              | `array`   | No       |         | Optional multi-domain lookup. BuiltWith supports up to 16 domains here.            |
| `payload.live_only`            | `boolean` | No       |         | When true, return only currently live technologies. Defaults to true.              |
| `payload.no_pii`               | `boolean` | No       |         | Exclude names and email addresses from the response.                               |
| `payload.no_meta`              | `boolean` | No       |         | Exclude BuiltWith metadata such as company name, socials, phones, and ranks.       |
| `payload.no_attr`              | `boolean` | No       |         | Exclude BuiltWith attributes data.                                                 |
| `payload.hide_text`            | `boolean` | No       |         | Hide technology descriptions, links, tags, and categories.                         |
| `payload.hide_dl`              | `boolean` | No       |         | Hide technology descriptions and links while keeping tags and categories.          |
| `payload.trust`                | `boolean` | No       |         | Request trust data inline. This consumes an extra BuiltWith API credit per domain. |
| `payload.first_detected_range` | `object`  | No       |         | Filter technologies by first-detected date range.                                  |
| `payload.last_detected_range`  | `object`  | No       |         | Filter technologies by last-detected date range.                                   |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Run BuiltWith domain lookup for one domain or up to 16 domains, returning technologies, metadata, and history.",
    "properties": {
      "domain": {
        "type": "string",
        "description": "Root domain or subdomain to inspect (for example stripe.com)."
      },
      "domains": {
        "type": "array",
        "description": "Optional multi-domain lookup. BuiltWith supports up to 16 domains here.",
        "items": {
          "type": "string"
        }
      },
      "live_only": {
        "type": "boolean",
        "description": "When true, return only currently live technologies. Defaults to true."
      },
      "no_pii": {
        "type": "boolean",
        "description": "Exclude names and email addresses from the response."
      },
      "no_meta": {
        "type": "boolean",
        "description": "Exclude BuiltWith metadata such as company name, socials, phones, and ranks."
      },
      "no_attr": {
        "type": "boolean",
        "description": "Exclude BuiltWith attributes data."
      },
      "hide_text": {
        "type": "boolean",
        "description": "Hide technology descriptions, links, tags, and categories."
      },
      "hide_dl": {
        "type": "boolean",
        "description": "Hide technology descriptions and links while keeping tags and categories."
      },
      "trust": {
        "type": "boolean",
        "description": "Request trust data inline. This consumes an extra BuiltWith API credit per domain."
      },
      "first_detected_range": {
        "type": "object",
        "description": "Filter technologies by first-detected date range.",
        "properties": {
          "from": {
            "type": "string",
            "description": "Inclusive start date in YYYY-MM-DD format."
          },
          "to": {
            "type": "string",
            "description": "Inclusive end date in YYYY-MM-DD format."
          }
        },
        "required": [
          "from",
          "to"
        ],
        "additionalProperties": false
      },
      "last_detected_range": {
        "type": "object",
        "description": "Filter technologies by last-detected date range.",
        "properties": {
          "from": {
            "type": "string",
            "description": "Inclusive start date in YYYY-MM-DD format."
          },
          "to": {
            "type": "string",
            "description": "Inclusive end date in YYYY-MM-DD format."
          }
        },
        "required": [
          "from",
          "to"
        ],
        "additionalProperties": false
      }
    },
    "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": {
          "Results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "Result": {
                  "type": "object",
                  "properties": {
                    "SpendHistory": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "D": {
                            "type": "number"
                          },
                          "S": {
                            "type": "number"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "IsDB": {
                      "anyOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "boolean"
                        }
                      ]
                    },
                    "Spend": {
                      "type": "number"
                    },
                    "Paths": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Domain": {
                            "type": "string"
                          },
                          "Url": {
                            "type": "string"
                          },
                          "SubDomain": {
                            "type": "string"
                          },
                          "FirstIndexed": {
                            "anyOf": [
                              {
                                "type": "number"
                              },
                              {
                                "type": "string"
                              }
                            ]
                          },
                          "LastIndexed": {
                            "anyOf": [
                              {
                                "type": "number"
                              },
                              {
                                "type": "string"
                              }
                            ]
                          },
                          "Technologies": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Name": {
                                  "type": "string"
                                },
                                "Parent": {
                                  "type": "string"
                                },
                                "Description": {
                                  "type": "string"
                                },
                                "Link": {
                                  "type": "string"
                                },
                                "Tag": {
                                  "type": "string"
                                },
                                "Categories": {
                                  "type": "array",
                                  "items": {
                                    "type": "string"
                                  }
                                },
                                "FirstDetected": {
                                  "anyOf": [
                                    {
                                      "type": "number"
                                    },
                                    {
                                      "type": "string"
                                    }
                                  ]
                                },
                                "LastDetected": {
                                  "anyOf": [
                                    {
                                      "type": "number"
                                    },
                                    {
                                      "type": "string"
                                    }
                                  ]
                                },
                                "IsPremium": {
                                  "anyOf": [
                                    {
                                      "type": "string"
                                    },
                                    {
                                      "type": "boolean"
                                    }
                                  ]
                                }
                              },
                              "additionalProperties": false
                            }
                          }
                        },
                        "additionalProperties": false
                      }
                    }
                  },
                  "additionalProperties": false
                },
                "Meta": {
                  "type": "object",
                  "properties": {
                    "CompanyName": {
                      "type": "string"
                    },
                    "City": {
                      "type": "string"
                    },
                    "State": {
                      "type": "string"
                    },
                    "Postcode": {
                      "type": "string"
                    },
                    "Country": {
                      "type": "string"
                    },
                    "Vertical": {
                      "type": "string"
                    },
                    "Social": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Telephones": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Emails": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "Names": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Name": {
                            "type": "string"
                          },
                          "Type": {
                            "type": "number"
                          },
                          "Level": {
                            "type": "string"
                          },
                          "Email": {
                            "type": "string"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "ARank": {
                      "type": "number"
                    },
                    "QRank": {
                      "type": "number"
                    },
                    "Majestic": {
                      "type": "number"
                    },
                    "Umbrella": {
                      "type": "number"
                    }
                  },
                  "additionalProperties": false
                },
                "Attributes": {
                  "type": "object",
                  "additionalProperties": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "number"
                      },
                      {
                        "type": "boolean"
                      },
                      {},
                      {}
                    ]
                  }
                },
                "FirstIndexed": {
                  "anyOf": [
                    {
                      "type": "number"
                    },
                    {
                      "type": "string"
                    }
                  ]
                },
                "LastIndexed": {
                  "anyOf": [
                    {
                      "type": "number"
                    },
                    {
                      "type": "string"
                    }
                  ]
                },
                "Lookup": {
                  "type": "string"
                },
                "SalesRevenue": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            }
          },
          "Errors": {
            "type": "array",
            "items": {}
          }
        },
        "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_domain_lookup --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: `provider_usage` (provider usage).
* Estimated Deepline credits: `0.14` per pricing unit.
* Billing mode: `post_deduct`.
