API Reference

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:

FieldTypeNullableDescription
mention_contentstringNoContent of the post or article
mention_urlstringNoURL to the original post or article
mention_channelstringNoPlatform or source (e.g., News, LinkedIn, etc.)
mention_posted_atstringYesBest estimated date of the mention (YYYY-MM-DD)
authorobjectYesInformation about the author of the mention

Author Object

FieldTypeNullableDescription
first_namestringNoAuthor's first name
last_namestringYesAuthor's last name
profile_urlstringNoURL to the author's profile
titlestringYesAuthor's current title
company_domainstringYesAuthor's company domain
company_namestringYesAuthor's company name
countrystringYesAuthor's country

Example

This example includes base webhook fields along with contact-social-engagement-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",
      "country": "United States"
    }
  }
}