> ## 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: Append Bizdata

> DiscoLike operation. DiscoLike Append Bizdata reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

DiscoLike operation.

<Info>
  Tool ID: `discolike_append_bizdata`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'discolike_append_bizdata',
  {
    "domains": [
      "example.com"
    ]
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute discolike_append_bizdata --input '{
  "domains": [
    "example.com"
  ]
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get discolike_append_bizdata --json` for the complete live contract.

## Input reference

Append DiscoLike BizData firmographics for a batch of public company domains.

| Name              | Type    | Required | Default | Details                                                                                                                                                          |
| ----------------- | ------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.domains` | `array` | Yes      | —       | One to 10,000 unique public company domains. Deepline normalizes each domain and rejects duplicates after normalization. Minimum items: 1. Maximum items: 10000. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Append DiscoLike BizData firmographics for a batch of public company domains.",
    "properties": {
      "domains": {
        "type": "array",
        "description": "One to 10,000 unique public company domains. Deepline normalizes each domain and rejects duplicates after normalization.",
        "minItems": 1,
        "maxItems": 10000,
        "items": {
          "type": "string",
          "minLength": 1
        }
      }
    },
    "required": [
      "domains"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name          | Type     | Required | Default | Details                                        |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `array`  | 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": {
        "type": "array",
        "description": "Provider response payload.",
        "items": {
          "type": "object",
          "description": "Universal append result container for all dataset combinations. Does NOT inherit CompanyResult — bizdata fields flow through as extras from parse_bizdata_profile. Non-bizdata dataset fields are also extras, optionally prefixed (e.g., \"redirects:redirect_sources\"). All fields are extras via extra=\"allow\", so non-bizdata responses stay clean (no empty firmographic fields like domain/employees) while bizdata responses include the full field set from parse_bizdata_profile.",
          "properties": {},
          "additionalProperties": true
        }
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `provider_usage` (provider usage).
* Estimated Deepline credits: `2.94` per pricing unit.

## Related documentation

* [DiscoLike provider guide](/docs/providers/discolike/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
