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

# Bloomberry Get Company Tech Stack: Inputs, Cost & CLI

> Returns a list of tech vendors that the specified company is currently subscribed to or using, based on their domain. Need an API key? Get a free API key here

## 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=bloomberry_get_company_tech_stack:{"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      |           | The domain of the company to get current vendors they're subscribed to. For example, 'ford.com' to get all active vendors that Ford is subscribed to.                               |
| `payload.list_mode`            | `"true" \| "false"` | No       | `"false"` | Set to 'true' to return the list of vendors as a comma-separated string (useful for data enrichment tools like Clay). Defaults to 'false' which returns a structured JSON response. |
| `payload.category`             | `string`            | No       |           | The category of the vendors to get (default: all)                                                                                                                                   |
| `payload.upper_level_category` | `string`            | No       |           | The upper level category of the vendors to get (default: all)                                                                                                                       |

### Allowed values

| Field               | Allowed values  |
| ------------------- | --------------- |
| `payload.list_mode` | `true`, `false` |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns a list of tech vendors that the specified company is currently subscribed to or using, based on their domain. Need an API key? Get a free API key here",
    "properties": {
      "domain": {
        "type": "string",
        "description": "The domain of the company to get current vendors they're subscribed to. For example, 'ford.com' to get all active vendors that Ford is subscribed to."
      },
      "list_mode": {
        "type": "string",
        "description": "Set to 'true' to return the list of vendors as a comma-separated string (useful for data enrichment tools like Clay). Defaults to 'false' which returns a structured JSON response.",
        "default": "false",
        "enum": [
          "true",
          "false"
        ]
      },
      "category": {
        "type": "string",
        "description": "The category of the vendors to get (default: all)"
      },
      "upper_level_category": {
        "type": "string",
        "description": "The upper level category of the vendors to get (default: all)"
      }
    },
    "required": [
      "domain"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type               | Required | Default | Description                                    |
| ------------- | ------------------ | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object \| string` | 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.",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "vendors": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier for the vendor entry"
                    },
                    "vendor_name": {
                      "type": "string",
                      "description": "Name of the technology vendor"
                    },
                    "vendor_category": {
                      "type": "string",
                      "description": "Category of the vendor/technology"
                    },
                    "vendor_url": {
                      "type": "string",
                      "description": "URL to vendor website"
                    },
                    "context_url": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Context URL where the vendor is being used"
                    },
                    "vendor_upper_level_category": {
                      "type": "string",
                      "description": "The upper level category of the vendor"
                    },
                    "usage_started_at": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "The date we detected this company started usage of this vendor (null if we don't know)",
                      "format": "date"
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "additionalProperties": false
          },
          {
            "type": "string",
            "description": "Comma-separated list of vendor names (when list_mode=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 bloomberry_get_company_tech_stack --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: `fixed` (per call).
* Estimated Deepline credits: `0.43` per pricing unit.
* Billing mode: `post_deduct`.
