Mentions Monitor - Hacker News, GitHub & Reddit Alerts avatar

Mentions Monitor - Hacker News, GitHub & Reddit Alerts

Pricing

from $1.50 / 1,000 results

Go to Apify Store
Mentions Monitor - Hacker News, GitHub & Reddit Alerts

Mentions Monitor - Hacker News, GitHub & Reddit Alerts

Track brand, competitor and keyword mentions across Hacker News, GitHub and Reddit. Diff mode returns only NEW mentions - schedule it and get Slack/email alerts the moment your product gets discussed. Per-query signals with top mention by engagement. Official APIs only.

Pricing

from $1.50 / 1,000 results

Rating

0.0

(0)

Developer

Nicolas Izquierdo

Nicolas Izquierdo

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Mentions Monitor — Hacker News, GitHub & Reddit Alerts

Know the moment your product, brand or competitor gets mentioned where developers talk.

A single HN comment can send you a thousand signups — or a takedown you'll want to answer within the hour. This Actor watches Hacker News (stories + comments), GitHub (issues + PRs) and Reddit for your keywords, and with diff mode returns only mentions that weren't there last time. Schedule it daily, wire a Slack/email/webhook integration, and never miss the conversation again.

SaaS mention-tracking tools charge $50-100+/month. This does the developer-channel slice of that job for cents, on your schedule, with raw data you own.

Sources

SourceWhat's searchedSetup
Hacker NewsStories and comments, via the official open Algolia APINone
GitHubIssues and pull requests mentioning your keywordNone (optional free token raises rate limits)
RedditPosts, via Reddit's official data APIYour own free Reddit API credentials (2-minute setup, guide below)

Official APIs only — no scraping tricks, no proxies, nothing that breaks tomorrow.

Use cases

  • Founders & indie hackers: get pinged when your product hits HN — the first hour of replies matters.
  • DevRel & marketing: track your brand and your competitors' across the channels developers actually use.
  • Sales: someone asking "alternatives to X?" on Reddit is a warm lead.
  • Open-source maintainers: find issues in other repos where your library is being discussed or misused.
  • Investors/analysts: mention velocity as a traction signal.

Input

{
"queries": ["mybrand", "competitor-x", "mydomain.com"],
"sources": ["hackernews", "github"],
"sinceDays": 30,
"newMentionsOnly": true
}
ParameterTypeDescription
queriesArray (required)Keywords, brand/product names or domains. Each is searched separately.
sourcesArrayhackernews, github, reddit (default: HN + GitHub).
sinceDaysIntegerLook-back window (default 30).
maxItemsPerQueryIntegerCap per query & source (default 100).
newMentionsOnlyBooleanDiff mode — only mentions not seen in previous runs. First run primes the memory.
trackNewMentionsBooleanAdds isNew to every mention (default true).
computeSignalsBooleanOne summary item per query (default true).
githubTokenSecretOptional; raises GitHub search limits and enables >100 results. No scopes needed.
redditClientId / redditClientSecretSecretEnables Reddit. Create a free "script" app at reddit.com/prefs/apps.

Output

One item per mention, unified across sources:

{
"type": "mention",
"source": "hackernews",
"query": "mybrand",
"kind": "comment",
"title": "Show HN: Something relevant",
"text": "We switched to mybrand last month and...",
"author": "pg",
"points": 120,
"numComments": 45,
"url": "https://news.ycombinator.com/item?id=999",
"createdAt": "2026-07-01T00:00:00Z",
"isNew": true
}

GitHub mentions carry repo, Reddit mentions carry subreddit. Plus one mention_signals item per query: totals by source, new since last run, newest mention date, and the top mention by engagement.

Quick-start recipes

Daily brand alert (schedule + Slack):

{ "queries": ["mybrand"], "sources": ["hackernews", "github", "reddit"], "newMentionsOnly": true }

Competitor watch:

{ "queries": ["competitor-a", "competitor-b"], "sinceDays": 7 }

"Alternatives to X" lead finder:

{ "queries": ["alternative to competitor-x"], "sources": ["reddit", "hackernews"], "newMentionsOnly": true }

Setting up Reddit (2 minutes, free)

  1. Log in to Reddit → https://www.reddit.com/prefs/apps → "create another app".
  2. Type: script. Name and redirect URI can be anything (e.g. http://localhost).
  3. Copy the client ID (under the app name) and the secret into the Actor input.

This keeps you within Reddit's Data API terms (free tier: 100 requests/min — far more than this Actor needs). Your credentials are stored encrypted by Apify and never leave your account.

FAQ

Why does Reddit need my credentials but HN/GitHub don't? HN's search API (Algolia) and GitHub's search API are open by design. Reddit's data API requires each consumer to register — it's free, and using your own app is what keeps this compliant.

Does it search Reddit comments too? v1 searches posts (title + body). Comment search is on the roadmap.

How does diff mode behave on the first run? Returns everything in the window and primes the memory; from the second run on, only new mentions.

Changelog

1.0

  • Initial release: Hacker News + GitHub out of the box, Reddit via your own official API credentials, diff mode with isNew, per-query signals with top mention by engagement.