reddit-scraper
Scrape and search Reddit posts using Apify. Use when you need to find Reddit discussions, track competitor mentions, monitor product feedback, discover pain points, or analyze subreddit content. Supports keyword filtering, time-based searches, and subreddit-specific queries.
npx skills add majiayu000/claude-skill-registry --skill reddit-scraper --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Reddit Scraper Scrape Reddit posts and comments using the Apify `parseforge/reddit-posts-scraper` actor. ## Quick Start Requires `APIFY_API_TOKEN` env var (or `--token` flag). Install dependency: `pip install requests`. ```bash # Top posts from r/growthhacking in last week python3 skills/reddit-scraper/scripts/search_reddit.py \ --subreddit growthhacking --days 7 --sort top --time week # Hot posts from multiple subreddits python3 skills/reddit-scraper/scripts/search_reddit.py \ --subreddit "growthhacking,gtmengineering" --days 7 --sort hot # Keyword-filtered competitor tracking python3 skills/reddit-scraper/scripts/search_reddit.py \ --subreddit LLMDevs \ --keywords "Langfuse,Arize,Langsmith" \ --days 30 # Human-readable summary table python3 skills/reddit-scraper/scripts/search_reddit.py \ --subreddit growthhacking --days 7 --output summary ``` ## How the Script Works 1. Builds full Reddit URLs for each subreddit (e.g. `https://www.reddit.com/r/growthhacking/top/?t=week`) 2. Calls the Apify `parseforge/reddit-posts-scraper` actor via REST API 3. Polls until the run completes, then fetches the dataset 4. Applies client-side keyword and date filtering 5. Sorts by score (descending
- Quick Start
- How the Script Works
- CLI Reference
- Tips for Small Subreddits
- Direct API Usage
- Common Workflows
- 1. Competitor Tracking
- 2. Pain Point Discovery
- 3. Brand Monitoring
- Important: Always Include Post URLs
- Output Format
- Configuration
Top posts from r/growthhacking in last week python3 skills/reddit-scraper/scripts/search_reddit.py \ Hot posts from multiple subreddits Keyword-filtered competitor tracking Human-readable summary table
What does the reddit-scraper skill do?
Scrape and search Reddit posts using Apify. Use when you need to find Reddit discussions, track competitor mentions, monitor product feedback, discover pain points, or analyze subreddit content. Supports keyword filtering, time-based searches, and subreddit-specific queries.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill reddit-scraper --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
