API Reference

Industry - Mentions

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:

FieldTypeRequiredNullableDescription
mention_contentstringYesNoContent of the post or article
mention_urlstringYesNoURL to the original post or article
mention_channelstringYesNoPlatform or source (e.g., Twitter, LinkedIn, News)
mention_posted_atstringYesYesBest estimated date of the mention (YYYY-MM-DD)
authorobjectNoYesInformation about the author of the mention

Author Object

FieldTypeRequiredNullableDescription
first_namestringNoYesAuthor's first name
last_namestringNoYesAuthor's last name
profile_urlstringNoYesURL to the author's profile
titlestringNoYesAuthor's current title
company_domainstringNoYesAuthor's company domain
company_namestringNoYesAuthor'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"
    }
  }
}