> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Account Interactions

> Every competitor interaction touching one account

Every competitor interaction touching **one** account, across all tracked competitors — the drilldown behind a row from [the accounts overview](/api-reference/list-competitor-accounts).

`accountID` is the company's LinkedIn numeric id, which is the `company_numeric_id` the accounts overview returns (and `target_company_numeric_id` on a feed row). It is not the CRM company id.

## Path parameters

<ParamField path="accountID" type="string" required>
  The account's LinkedIn numeric company id.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  requests.get(
      "https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
  )
  ```

  ```javascript JavaScript theme={null}
  await fetch("https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions", {
    headers: { Authorization: "Bearer YOUR_API_KEY" },
  });
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "interactions": [
        {
          "competitor_id": "c1a2b3c4-d5e6-7890-abcd-ef1234567890",
          "competitor_name": "Globex Inc",
          "rep_linkedin_id": "samir-k",
          "rep_name": "Samir Khoury",
          "rep_title": "Enterprise AE",
          "target_linkedin_id": "dana-p",
          "target_name": "Dana Patel",
          "target_job_title": "VP Revenue Operations",
          "interaction_type": "comment",
          "engagement_at": "2026-07-28T14:02:11Z",
          "post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7212345678901234567",
          "content_preview": "Happy to walk you through how we handle this at Globex — DM me.",
          "we_know_target": true
        }
      ]
    }
  }
  ```
</ResponseExample>
