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

# Discolike Bizdata: Inputs, Cost & CLI Example

> Fetch a firmographic profile for a known domain, including company details, public contacts, and keywords. 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=discolike_bizdata:{"domain":"{{domain}}"}' --json
```

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

## Input Schema

| Name             | Type     | Required | Default | Description |
| ---------------- | -------- | -------- | ------- | ----------- |
| `payload.domain` | `string` | Yes      |         |             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns firmographic data for a domain including company name, status, score, address, phones, social URLs, description, keywords, and industry classification.",
    "properties": {
      "domain": {
        "type": "string"
      }
    },
    "required": [
      "domain"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                                                                                                                                                                                                                                                                                                                          |
| ------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data` | `object` | Yes      |         | Business data profile returned by discover, bizdata, and match endpoints. Contains company information derived from certificates, website content, and ML models. Firmographics data for business websites including company start dates and size indicators derived from certificate history, parsed website data, and modeled keywords/categories. |
| `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": "Business data profile returned by discover, bizdata, and match endpoints. Contains company information derived from certificates, website content, and ML models. Firmographics data for business websites including company start dates and size indicators derived from certificate history, parsed website data, and modeled keywords/categories.",
        "properties": {
          "domain": {
            "type": "string",
            "description": "Company domain and unique record identifier"
          },
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Latest and most accurate company name from certificate or website"
          },
          "status": {
            "type": "object",
            "description": "Company operating status with confidence score.",
            "properties": {
              "status": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Operating status: 'active' or 'closed'"
              },
              "confidence": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Confidence score for the status (0.0-1.0)"
              }
            },
            "additionalProperties": false
          },
          "score": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Company size and buying power computed from certificates history (1-800)"
          },
          "start_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Company start date, derived from the date of the first certificate (YYYY-MM-DD)"
          },
          "end_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Company end date if closed (YYYY-MM-DD), empty if still in business"
          },
          "address": {
            "type": "object",
            "description": "Company headquarters address from website metatags or content.",
            "properties": {
              "street": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Street address of HQ, from website metatags or content"
              },
              "city": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "City, from website metatags or content"
              },
              "state": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "State code, from website metatags or content"
              },
              "zip": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "ZIP/postal code, from website metatags or content"
              },
              "country": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Two-letter country code (ISO 3166-1 alpha-2), from website metatags or content"
              }
            },
            "additionalProperties": false
          },
          "phones": {
            "type": [
              "array",
              "null"
            ],
            "description": "Array of phone numbers listed on the website",
            "items": {
              "type": "string"
            }
          },
          "public_emails": {
            "type": [
              "array",
              "null"
            ],
            "description": "Array of contact emails listed on the website",
            "items": {
              "type": "string"
            }
          },
          "domain_associations": {
            "type": "array",
            "description": "Associated domains",
            "items": {
              "type": "string"
            }
          },
          "social_urls": {
            "type": [
              "array",
              "null"
            ],
            "description": "URLs pointing to the company page on Twitter, LinkedIn, Facebook",
            "items": {
              "type": "string"
            }
          },
          "redirect_domain": {
            "type": [
              "string",
              "null"
            ],
            "description": "Last domain in the redirect chain, if any"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Description, from website metatags or content"
          },
          "keywords": {
            "type": "object",
            "description": "Keywords generated by Natural Language Models based on site content, as keyword:confidence pairs",
            "additionalProperties": {
              "type": "number"
            }
          },
          "industry_groups": {
            "type": "object",
            "description": "Top industries (up to 2), as industry:confidence pairs",
            "additionalProperties": {
              "type": "number"
            }
          },
          "employees": {
            "type": [
              "string",
              "null"
            ],
            "description": "Employee count range: 1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+"
          },
          "revenue_range": {
            "type": [
              "string",
              "null"
            ],
            "description": "Company revenue bucket: 1B, or N/A when unknown",
            "enum": [
              "<1M",
              "1-10M",
              "10-100M",
              "100M-1B",
              ">1B",
              "N/A"
            ]
          },
          "business_model": {
            "type": "object",
            "description": "Business model labels as label:confidence pairs (B2B, B2C, B2G, G2B, G2C, D2C, C2C, C2B)",
            "additionalProperties": {
              "type": "number"
            }
          },
          "update_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Date of last record update (YYYY-MM-DD)"
          },
          "linkup": {
            "type": "null",
            "description": "Deprecated field, always None"
          }
        },
        "required": [
          "domain"
        ],
        "additionalProperties": true
      },
      "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 discolike_bizdata --payload '{
  "domain": "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: `provider_usage` (provider usage).
* Estimated Deepline credits: `2.94` per pricing unit.
* Billing mode: `post_deduct`.
