> ## 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: Action Doc

> Resolving a company name, website, or Akta UUID before company-specific lookups. Includes inputs, outputs, SDK V2 examples, and Deepline cost.

Resolving a company name, website, or Akta UUID before company-specific lookups.

<Info>
  Tool ID: `akta_company_search`
</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_search',
  {
    "query": "software companies hiring engineers"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute akta_company_search --input '{
  "query": "software companies hiring engineers"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "data": [
      {
        "uuid": "uuid_123",
        "name": "Example",
        "website": "https://example.com/resource"
      }
    ]
  }
}
```

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

## Input reference

Resolve a company name, website domain, or UUID into a structured company record. This is a free endpoint — it does not consume API credits.

| Name            | Type     | Required | Default | Details                                                                                                                             |
| --------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| `payload.query` | `string` | Yes      | —       | A company name, website. The backend automatically resolves the input type. Examples: [https://canva.com](https://canva.com), canva |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Resolve a company name, website domain, or UUID into a structured company record. This is a free endpoint — it does not consume API credits.",
    "properties": {
      "query": {
        "type": "string",
        "description": "A company name, website. The backend automatically resolves the input type. Examples: https://canva.com, canva"
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                  | Type                                                             | Required | Default | Details                                                                                |
| ------------------------------------- | ---------------------------------------------------------------- | -------- | ------- | -------------------------------------------------------------------------------------- |
| `result.data`                         | `object`                                                         | Yes      | —       | Provider response payload.                                                             |
| `result.data.data`                    | `array`                                                          | No       | —       | —                                                                                      |
| `result.data.data[].uuid`             | `string`                                                         | No       | —       | Unique Akta identifier for the company.                                                |
| `result.data.data[].name`             | `string`                                                         | No       | —       | Legal or registered company name.                                                      |
| `result.data.data[].website`          | `string`                                                         | No       | —       | Primary website URL. Format: `uri`.                                                    |
| `result.data.data[].product_category` | `string`                                                         | No       | —       | Primary product or service category.                                                   |
| `result.data.data[].company_status`   | `"public" \| "private" \| "acquired" \| "delisted" \| "unknown"` | No       | —       | Public market status. Allowed: `public`, `private`, `acquired`, `delisted`, `unknown`. |
| `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": {
          "data": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "uuid": {
                  "type": "string",
                  "description": "Unique Akta identifier for the company."
                },
                "name": {
                  "type": "string",
                  "description": "Legal or registered company name."
                },
                "website": {
                  "type": "string",
                  "description": "Primary website URL.",
                  "format": "uri"
                },
                "product_category": {
                  "type": "string",
                  "description": "Primary product or service category."
                },
                "company_status": {
                  "type": "string",
                  "description": "Public market status.",
                  "enum": [
                    "public",
                    "private",
                    "acquired",
                    "delisted",
                    "unknown"
                  ]
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

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