Industry Mentions
Notifies you when posts, articles, or social content across the web mention your tracked keyword or phrase. This radar type is domain-agnostic and monitors the broader web.
Content Structure
The content
object for industry mentions contains:
Field | Type | Required | Nullable | Description |
---|---|---|---|---|
mention_content | string | Yes | No | Content of the post or article |
mention_url | string | Yes | No | URL to the original post or article |
mention_channel | string | Yes | No | Platform or source (e.g., Twitter, LinkedIn, News) |
mention_posted_at | string | Yes | Yes | Best estimated date of the mention (YYYY-MM-DD) |
author | object | No | Yes | Information about the author of the mention |
Author Object
Field | Type | Required | Nullable | Description |
---|---|---|---|---|
first_name | string | No | Yes | Author's first name |
last_name | string | No | Yes | Author's last name |
profile_url | string | No | Yes | URL to the author's profile |
title | string | No | Yes | Author's current title |
company_domain | string | No | Yes | Author's company domain |
company_name | string | No | Yes | Author's company name |
Example
This example includes base webhook fields along with industry-mentions-specific content.
{
"event_id": "7f2f1b8e-2c3d-4e91-b6a5-9f0d1a2b3c4d",
"event_type": "radar_finding",
"record_id": "3a9b1b0e-8d3a-4f0b-9237-1f2c3d4e5f6a",
"discovered_at": "2024-03-19T10:15:30Z",
"data": {
"radar_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"radar_type": "industry_mentions",
"keyword": "artificial intelligence",
"domain": null,
"next_charge_at": "2024-04-20T12:30:00Z",
"custom_fields": {
"priority": "high",
"campaign": "ai-trends"
}
},
"content": {
"mention_content": "The latest advances in artificial intelligence are transforming enterprise software, particularly in areas of automation and predictive analytics.",
"mention_url": "https://www.linkedin.com/posts/joedoe-top-7360626072800903169-s4NE",
"mention_channel": "LinkedIn",
"mention_posted_at": "2024-03-18",
"author": {
"first_name": "Joe",
"last_name": "Doe",
"profile_url": "https://www.linkedin.com/in/joedoe",
"title": "Director of Sales",
"company_domain": "abc.com",
"company_name": "ABC Corporation"
}
}
}