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

# Akta: Company Enrichment

> Enriching a company with selected firmographic, financial, strategic, product, customer, industry, or technology sections.

Enriching a company with selected firmographic, financial, strategic, product, customer, industry, or technology sections.

<Info>
  Tool ID: `akta_company_enrichment`
</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(
  'akta_company_enrichment',
  {
    "company": "Example Corp"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute akta_company_enrichment --input '{
  "company": "Example Corp"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "status": "example",
    "data": {},
    "count": 123
  }
}
```

Use `deepline tools get akta_company_enrichment --json` for the latest machine-readable contract.

## Input reference

Retrieve structured company data — firmographics, funding, headcount, web traffic, business model, and financials. Specify which sections you need; only requested sections are returned.

| Name               | Type     | Required | Default | Details                                                                                                                                                                                                                                                                                                                                                                                                              |
| ------------------ | -------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.company`  | `string` | Yes      | —       | Company website (e.g. '[https://canva.com](https://canva.com)') or a company UUID (e.g. '00031n-tesla'). The UUID can be obtained from the Company Search API.                                                                                                                                                                                                                                                       |
| `payload.sections` | `string` | No       | —       | Comma-separated list of sections to return. Copy-paste example: `firmographic,business_model,company_assessment,trust_signal,company_hierarchy,digital_presence,financial_estimate,location,management_profile,product_offering,strategic_signal,customer_profile,industry,technology,funding_detail,mna_and_investment`. Note: `funding_detail` and `mna_and_investment` are available on the Enterprise tier only. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve structured company data — firmographics, funding, headcount, web traffic, business model, and financials. Specify which sections you need; only requested sections are returned.",
    "properties": {
      "company": {
        "type": "string",
        "description": "Company website (e.g. 'https://canva.com') or a company UUID (e.g. '00031n-tesla'). The UUID can be obtained from the Company Search API."
      },
      "sections": {
        "type": "string",
        "description": "Comma-separated list of sections to return. Copy-paste example: `firmographic,business_model,company_assessment,trust_signal,company_hierarchy,digital_presence,financial_estimate,location,management_profile,product_offering,strategic_signal,customer_profile,industry,technology,funding_detail,mna_and_investment`. Note: `funding_detail` and `mna_and_investment` are available on the Enterprise tier only."
      }
    },
    "required": [
      "company"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                 | Type      | Required | Default | Details                                        |
| -------------------- | --------- | -------- | ------- | ---------------------------------------------- |
| `result.data`        | `object`  | Yes      | —       | Provider response payload.                     |
| `result.data.status` | `string`  | No       | —       | —                                              |
| `result.data.data`   | `record`  | No       | —       | Enriched company data keyed by section name.   |
| `result.data.count`  | `integer` | No       | —       | Number of sections returned.                   |
| `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": "Provider response payload.",
        "properties": {
          "status": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "description": "Enriched company data keyed by section name."
          },
          "count": {
            "type": "integer",
            "description": "Number of sections returned."
          }
        },
        "additionalProperties": false
      },
      "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: `0.03` per pricing unit.

## Related documentation

* [Akta provider guide](/docs/providers/akta/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)
