> ## 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: Website Traffic

> Retrieving company website engagement, visit estimates, and acquisition-source shares. Includes inputs, outputs, SDK V2 examples, and Deepline cost.

Retrieving company website engagement, visit estimates, and acquisition-source shares.

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

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

### CLI

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

## Example response

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

```json theme={null}
{
  "data": {
    "data": {
      "uuid": "uuid_123",
      "engagements": {},
      "estimated_monthly_visits": {}
    }
  }
}
```

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

## Input reference

Fetches a company's website traffic signals, including engagement metrics, historical monthly visit estimates, and a breakdown of traffic by acquisition source.

| Name              | Type     | Required | Default | Details                                                                                                     |
| ----------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------- |
| `payload.company` | `string` | Yes      | —       | Company website (e.g. 'canva.com') or a company UUID. The UUID can be obtained from the Company Search API. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches a company's website traffic signals, including engagement metrics, historical monthly visit estimates, and a breakdown of traffic by acquisition source.",
    "properties": {
      "company": {
        "type": "string",
        "description": "Company website (e.g. 'canva.com') or a company UUID. The UUID can be obtained from the Company Search API."
      }
    },
    "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.data`                          | `object` | No       | —       | —                                              |
| `result.data.data.uuid`                     | `string` | No       | —       | —                                              |
| `result.data.data.engagements`              | `record` | No       | —       | —                                              |
| `result.data.data.estimated_monthly_visits` | `record` | No       | —       | —                                              |
| `result.data.data.traffic_sources`          | `record` | No       | —       | —                                              |
| `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": "object",
            "properties": {
              "uuid": {
                "type": "string"
              },
              "engagements": {
                "type": "object"
              },
              "estimated_monthly_visits": {
                "type": "object"
              },
              "traffic_sources": {
                "type": "object"
              }
            },
            "additionalProperties": false
          }
        },
        "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)
