HotMentionHotMention

Integrations

Get leads delivered where you work — email, Slack, Telegram, webhooks, and more.

📧

Email Notifications

All plans

HotMention sends email alerts when new leads match your filters. Each email includes:

  • Lead title and snippet
  • Intent score and label
  • Platform and author
  • Direct link to the conversation
  • One-click access to the dashboard

💡 Tip: Set to "Real-time" for HOT leads (70+) and "Daily digest" for everything else. Stay responsive without email overload.

Setup Steps

  1. 1.Navigate to Settings → Notifications
  2. 2.Toggle 'Email notifications' ON
  3. 3.Choose frequency: Real-time, Daily digest, or Weekly summary
  4. 4.Select minimum intent score (e.g., only HOT leads 70+)
💬

Slack Integration

Paid plan

New leads appear as rich Slack messages in your chosen channel. Each message shows:

  • Conversation title (clickable link to platform)
  • Intent score with emoji indicator (🔥 = HOT, ⚡ = WARM)
  • Draft reply preview
  • Quick action buttons: "View in Dashboard", "Mark Contacted"

Example Slack Message

🔥 HOT Lead (Score: 87) — Reddit

"Looking for a referral program tool that integrates with Stripe"

Posted by u/saasfounder in r/SaaS • 5 minutes ago

💡 Tip: Create a dedicated #leads-hot channel filtered for score 70+. Your team can claim and respond to leads in real-time.

Setup Steps

  1. 1.Go to Settings → Integrations → Slack
  2. 2.Click 'Connect Slack Workspace'
  3. 3.Authorize HotMention to post messages
  4. 4.Choose a channel (e.g., #leads or #marketing)
  5. 5.Set filters (minimum score, platforms, keywords)
✈️

Telegram Integration

Paid plan

Leads arrive as Telegram messages — perfect for mobile-first founders. Messages include:

  • Intent score and platform
  • Conversation snippet
  • Inline buttons: "View Lead", "Draft Reply", "Archive"
  • Direct link to the conversation

💡 Tip: Use Telegram for instant notifications when you're on the go. Faster than email, less noisy than Slack.

Setup Steps

  1. 1.Open Settings → Integrations → Telegram
  2. 2.Click 'Connect Telegram'
  3. 3.Start a chat with @HotMentionBot
  4. 4.Send /start and authorize your account
  5. 5.Configure filters (score, platforms, keywords)
🤖

OpenClaw Skill

All plans

The OpenClaw skill lets your AI agent:

  • Pull your latest leads on command ("show me hot leads from today")
  • Summarize conversations and suggest replies
  • Alert you proactively when high-intent leads appear
  • Track pipeline stages and conversion rates

Example Agent Interaction

You: "Any hot leads today?"

Agent: "Yes! 3 HOT leads (score 70+). One from Reddit asking about referral software, another from X looking for a Stripe affiliate integration. Want me to draft replies?"

💡 Tip: Set up heartbeat checks so your agent alerts you when new HOT leads arrive.

Setup Steps

  1. 1.Visit clawhub.ai/alexandr-belogubov/hotmention
  2. 2.Click 'Install Skill' to add to your OpenClaw agent
  3. 3.Authorize with your HotMention API key (Settings → API)
  4. 4.Agent can now fetch leads, filter by score, and summarize mentions
🔗

Webhooks

Paid plan

Webhooks send real-time JSON payloads to your server when leads arrive. Perfect for:

  • Custom CRM integrations (HubSpot, Salesforce, Pipedrive)
  • Internal dashboards and analytics
  • Automated workflows (Zapier, Make, n8n)
  • Slack/Discord bots with custom logic

Example Payload

{
  "event": "lead.new",
  "timestamp": "2026-02-16T10:04:12.518Z",
  "lead": {
    "id": "abc123",
    "platform": "REDDIT",
    "url": "https://reddit.com/r/SaaS/...",
    "title": "Looking for referral software",
    "content": "Need something simple...",
    "authorName": "some_user",
    "subreddit": "SaaS",
    "scores": {
      "intent": 90,
      "relevance": 85,
      "freshness": 100,
      "competition": 70,
      "visibility": 60,
      "total": 87
    },
    "scoreLabel": "HOT",
    "shouldReply": "REPLY",
    "shouldReplyReason": "Actively comparing tools",
    "draftReply": "Hey! You might...",
    "matchedKeyword": "referral software",
    "competitorsFound": [],
    "postedAt": "2026-02-16T10:00:00Z",
    "product": "Acme"
  }
}

Webhook security: Every payload carries an X-HotMention-Signature header holding the hex HMAC-SHA256 digest of the raw request body, keyed with your signing secret. Find the secret under Settings → Notifications → Webhook, compute the digest over the bytes you received (before parsing the JSON) and compare the two to prevent spoofing.

Verify (Node.js)

const expected = crypto
  .createHmac("sha256", process.env.HOTMENTION_WEBHOOK_SECRET)
  .update(rawBody, "utf8")
  .digest("hex");

const ok = crypto.timingSafeEqual(
  Buffer.from(expected),
  Buffer.from(req.headers["x-hotmention-signature"])
);

💡 Tip: Use webhooks to auto-create CRM contacts, log leads to Airtable, or trigger personalized outreach sequences.

Setup Steps

  1. 1.Go to Settings → Notifications → Webhook
  2. 2.Turn on 'Enable webhook'
  3. 3.Enter your endpoint URL — https only, and it may not point at a private or internal address
  4. 4.Copy the signing secret shown below the field to verify incoming payloads
  5. 5.Save — HOT leads are delivered as they are scored

Coming Soon

  • Discord integration: Post leads to Discord channels
  • Zapier native app: No-code workflows
  • HubSpot integration: Auto-sync leads as contacts

Want a specific integration? Email support@hotmention.com

Next: Configure Settings

Fine-tune your notifications, platforms, team access, and billing.