
Reddit Leads
Find and prioritize high-intent B2B prospects on Reddit with AI scoring instead of manually scrolling subreddits.
Overview
reddit-leads is an agent skill most often used in Grow (also Validate, Idea) that discovers B2B leads on Reddit via reddapi.dev, scores buying intent 0–100, and labels posts by lead type.
Install
npx skills add https://github.com/lignertys/reddit-research-skill --skill reddit-leadsWhat is this skill?
- Queries reddapi.dev Leads API with 1024D semantic search across 50K+ subreddits and 1.5M+ indexed posts
- Scores every matched post 0–100 on buying-intent strength for ranked outreach queues
- Classifies signals into 5 lead types: pain_point, solution_request, complaint, feature_request, comparison
- Infers industry/context from thread content and filters support tickets, memes, and low-intent noise
- Supports competitor-intelligence workflows—users actively switching or dissatisfied with named alternatives
- 5 lead type categories
- 0-100 AI lead scoring
- 50K+ subreddits indexed
Adoption & trust: 620 installs on skills.sh; 1 GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You waste hours skimming Reddit manually and still miss high-intent threads where buyers describe pain, request solutions, or rage-quit a competitor.
Who is it for?
Indie SaaS founders and solo builders doing Reddit-based outbound, competitor poaching, or intent-ranked prospect lists with an API key on reddapi.dev.
Skip if: Teams that cannot use paid lead APIs, purely non-Reddit channels, or workflows that need guaranteed email addresses rather than public thread context.
When should I use this skill?
You need B2B leads from Reddit with AI intent scoring, lead-type classification, or competitor-switch signals via reddapi.dev.
What do I get? / Deliverables
You get a scored, typed shortlist of Reddit conversations to prioritize for outreach, positioning tests, or competitor-replacement offers.
- Ranked list of Reddit posts with 0–100 intent scores and lead-type labels
- Industry/context notes inferred from discussion text
- Prioritized outreach or research brief derived from API results
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Sales prospecting and competitor poaching are core grow-phase work for indie builders; pain-point mining also supports earlier validation but the skill’s default workflow is lead intake and prioritization. Lifecycle is where solo builders turn community signals into outbound lists, warm replies, and replacement opportunities when users complain about incumbents.
Where it fits
Export complaint and solution_request threads scored above 80 to prioritize DMs or thoughtful replies for your SaaS trial.
Aggregate pain_point and feature_request posts to sanity-check whether a niche problem is frequent enough to justify a v1.
Track comparison and complaint clusters naming incumbents to draft positioning and switcher-focused landing copy.
How it compares
Use this API-integrated scoring workflow instead of ad-hoc Reddit keyword searches or generic social listening without intent labels.
Common Questions / FAQ
Who is reddit-leads for?
Solo builders and small B2B teams who prospect on Reddit and want AI-ranked intent signals instead of unstructured search results.
When should I use reddit-leads?
Use it in Grow to queue outbound on scored threads, in Validate to harvest pain_point and feature_request signals before you commit scope, and in Idea when mining competitor complaints for positioning gaps.
Is reddit-leads safe to install?
Treat it like any skill that uses external APIs and secrets: review the Security Audits panel on this Prism page, rotate your reddapi.dev key, and respect Reddit terms and anti-spam norms before contacting users.
SKILL.md
READMESKILL.md - Reddit Leads
# reddit-leads Skill ## Overview AI-powered B2B lead discovery from Reddit. Finds users actively expressing buying intent, scores them 0-100, and classifies by lead type — so you can focus on the warmest prospects first. **Powered by [reddapi.dev](https://reddapi.dev/leads)** — The Lead Engine indexes 50K+ subreddits with 1.5M+ posts, using 1024D vector search to match on meaning, not just keywords. **Key Advantage:** - ✅ **AI lead scoring** — Every post scored 0-100 on buying intent signal strength - ✅ **5 lead type categories** — pain_point, solution_request, complaint, feature_request, comparison - ✅ **Industry inference** — AI auto-detects industry/context from discussion content - ✅ **Zero noise** — Filters out support tickets, memes, and irrelevant mentions - ✅ **Competitor intelligence** — Find users actively complaining about or switching from competitors ## Setup ### Get API Key 1. Create an account at https://reddapi.dev 2. Subscribe to a paid plan (Free: 3 searches/mo, Lite $19.9/mo, Starter $49/mo, Pro $99/mo) 3. Go to https://reddapi.dev/account to view or generate your API key ### Environment Variable ```bash export REDDAPI_API_KEY="your_api_key_here" ``` ### Rate Limits | Plan | Monthly API Calls | Per Minute | |------|-------------------|------------| | Free | 3 | — | | Lite | 500 | 50 | | Starter | 5,000 | 50 | | Pro | 15,000 | 100 | | Enterprise | Unlimited | 1,000 | ## API Reference **Base URL:** `https://reddapi.dev` **Authentication:** All requests require header: ``` Authorization: Bearer YOUR_API_KEY ``` ### POST /api/v1/leads Find scored, classified business leads from Reddit discussions. ```bash curl -X POST "https://reddapi.dev/api/v1/leads" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"query": "people frustrated with project management tools", "limit": 20, "min_score": 60}' ``` | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | Yes | Natural language lead query — describe who you're looking for | | limit | number | No | Results to return (default: 20, max: 100) | | min_score | number | No | Minimum lead score filter (0-100, default: 0) | **Response:** ```json { "success": true, "data": { "query": "people frustrated with project management tools", "results": [ { "id": "lead001", "title": "Asana is getting too expensive for our team of 15", "content": "We're paying $400/mo for Asana and half our team doesn't even use it...", "subreddit": "projectmanagement", "author": "pm_burnt_out", "upvotes": 234, "comments": 89, "lead_score": 94, "lead_type": "pain_point", "pain_point": "Pricing - cost too high for team size", "opportunity": "Affordable project management alternative for mid-size teams", "industry": "SaaS / Project Management", "target_product": "Asana", "url": "https://reddit.com/r/projectmanagement/comments/lead001" } ], "total": 2, "processing_time_ms": 840 } } ``` ### Lead Types (5 Categories) | Type | Description | Example | |------|-------------|---------| | `pain_point` | Users frustrated with current solutions | "Jira is so slow and bloated" | | `solution_request` | Users actively asking for alternatives | "What's a good alternative to X?" | | `complaint` | Users complaining about specific products | "Salesforce support is terrible" | | `feature_requ