Competitor Monitoring
List Account Interactions
Every competitor interaction touching one account
GET
/
competitor-accounts
/
{accountID}
/
interactions
curl https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
requests.get(
"https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
await fetch("https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions", {
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
{
"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
}
]
}
}
Every competitor interaction touching one account, across all tracked competitors — the drilldown behind a row from the accounts overview.
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
string
required
The account’s LinkedIn numeric company id.
curl https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
requests.get(
"https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
await fetch("https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions", {
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
{
"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
}
]
}
}
⌘I
curl https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions \
-H "Authorization: Bearer YOUR_API_KEY"
import requests
requests.get(
"https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions",
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
await fetch("https://api.clustr-ai.com/api/public/competitor-accounts/1553894/interactions", {
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
{
"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
}
]
}
}