Reddit Scraper + AI Lead Finder avatar

Reddit Scraper + AI Lead Finder

Under maintenance

Pricing

from $5.00 / 1,000 ai-scored reddit posts

Go to Apify Store
Reddit Scraper + AI Lead Finder

Reddit Scraper + AI Lead Finder

Under maintenance

Stop scrolling Reddit for leads. Search any subreddits by keyword and get every post scored 1-10 for buying intent by Claude AI — with the pain point extracted and a reply angle suggested.

Pricing

from $5.00 / 1,000 ai-scored reddit posts

Rating

0.0

(0)

Developer

Mozi Mohidien

Mozi Mohidien

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Share

Stop scrolling Reddit for leads. Search any subreddits by keyword and get every post scored 1–10 for buying intent by Claude AI — with the pain point extracted and a reply angle suggested.

Paste subreddits and keywords. The Actor searches Reddit, fetches every matching post, and sends each one to Claude AI for buying-intent scoring. You get a ranked list of posts where real people are actively asking about the problem your product solves — with a suggested reply angle for each one.

Output formats: JSON · CSV · Excel · XML


Why Reddit Leads Are Different

Reddit users state their problems in plain language, unprompted. No cold outreach required — they're already asking for help. This Actor surfaces those conversations and scores them so you work the highest-intent posts first.

  • Buying-intent score (1–10) — AI-ranked by how strongly the post signals an active problem that needs a solution
  • Pain point extracted — the specific problem the user is describing, in their own words
  • Reply angle suggested — a non-spammy way to engage with the post
  • Any subreddit, any keyword — not limited to a fixed set of communities
  • Schedule-friendly — run on a cron to catch new posts the moment they appear

How It Works

  1. You provide subreddit names and keywords
  2. The Actor searches Reddit for matching posts and fetches the full post content
  3. Claude AI (Haiku) scores each post 1–10 for buying intent, extracts the core pain point, and suggests a reply angle
  4. Results land in the Apify dataset sorted by score — highest intent at the top

Sample Output

{
"subreddit": "entrepreneur",
"postTitle": "We're burning 8 hours a week manually enriching leads — is there a better way?",
"url": "https://reddit.com/r/entrepreneur/comments/abc123",
"author": "u/startup_founder_42",
"score": 147,
"ai": {
"buyingIntentScore": 9,
"painPoint": "Manual lead enrichment is too slow and expensive for their current team size",
"replyAngle": "Share a specific workflow that cuts enrichment time — mention that automation tools exist that do this per-company rather than per-seat"
}
}

Pricing

Works out of the box — no API key needed. Our Anthropic key is built in, so you start enriching leads immediately at standard PPE pricing (pay per result, no subscription).

Bring your own Anthropic key for discounted per-result pricing — contact us after purchase with your Apify username to activate the discount tier.

Batch sizeApprox. cost (standard)
10 results~$0.05
50 results~$0.25
100 results~$0.50
500 results~$2.50

Integration Examples

JavaScript / Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('reverend_bluebell/reddit-lead-ai-finder').call({
subreddit: 'entrepreneur',
keywords: ['lead generation', 'sales automation', 'cold outreach'],
anthropicApiKey: 'sk-ant-...',
maxPosts: 25,
minLeadScore: 5
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
const hotPosts = items.filter(i => i.ai.buyingIntentScore >= 7);

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("reverend_bluebell/reddit-lead-ai-finder").call(run_input={
"subreddit": "saas",
"keywords": ["automation", "lead enrichment"],
"anthropicApiKey": "sk-ant-...",
"maxPosts": 25,
"minLeadScore": 5
})
items = client.dataset(run["defaultDatasetId"]).list_items().items

CLI

apify call reverend_bluebell/reddit-lead-ai-finder \
--input '{"subreddit": "entrepreneur", "keywords": ["lead gen", "b2b sales"], "anthropicApiKey": "sk-ant-..."}'

MCP (Claude Desktop / Cursor)

{
"mcpServers": {
"apify": {
"command": "npx",
"args": ["-y", "@apify/mcp-server", "--actors", "reverend_bluebell/reddit-lead-ai-finder"]
}
}
}

Chain With Our Other Actors

  1. Reddit Scraper + AI Lead Finder (this Actor) — find high-intent posts and the companies/people behind them
  2. Company Contact Scraper + AI Lead Enricher — enrich those companies with emails, phones, and ICP scoring
  3. Job Posting Scraper + AI Hiring Signal Analyzer — validate that the same companies are actively hiring (double buying signal)

Reddit Etiquette Note

This Actor reads public posts for research and lead qualification purposes. It does not post, vote, or interact with Reddit on your behalf. How you engage with Reddit users afterward is your responsibility — unsolicited DMs and spammy replies violate Reddit's rules and will get your account banned. Use the reply angles as inspiration for genuine, value-first engagement.