Reddit Community User
Pricing
from $2.66 / 1,000 results
Reddit Community User
Get the full member list of any subreddit — usernames, karma, account age, trophies, and post-history links. One click, no Reddit account needed.
Pricing
from $2.66 / 1,000 results
Rating
0.0
(0)
Developer
CheapGET
Actor stats
1
Bookmarked
2
Total users
2
Monthly active users
9 hours ago
Last modified
Categories
Share
Reddit Community User - Find Active Users in Any Subreddit
Find active users in any subreddit — with karma, account age, trophies, and moderator roles.
Search any subreddit and get a list of its active users: usernames, post karma, comment karma, account creation date, Reddit Premium status, moderator roles, and trophy collections. Fast, cheap, and no Reddit account needed.
🏆 Key Features
👤 Complete User Profiles
- 🪪 Identity Info: Username, display name, avatar URL, and public bio for every community user.
- ⭐ Karma Breakdown: Separate post karma and comment karma scores for each user.
- 📅 Account Age: Exact account creation date so you can see how long they've been on Reddit.
- ✅ Verification Status: Email verified flag and account verification status.
🏅 Account Status Flags
- 💎 Reddit Premium: See which users have Reddit Premium.
- 👔 Reddit Employee: Spot official Reddit staff members.
- 🛡️ Moderator Detection: Find users who moderate any subreddit.
- 🚫 Suspended Accounts: See which accounts are suspended or restricted.
🏆 Trophies & Activity
- 🏆 Trophy Collection: Full list of Reddit trophies earned by each user including name, icon, grant date, and description.
- 📋 Moderated Subreddits: See all subreddits each user moderates.
- 🔗 Multireddits: Custom multireddit collections created by each user.
💰 Pricing
| Resource | Cost | Description |
|---|---|---|
| Actor Start | $0.005 | Charged when the Actor starts running (one event per GB of memory, minimum one) |
| Result | $0.00296 | Charged per user profile found — includes karma, trophies, and account details |
Example Cost Calculation:
- Getting 100 user profiles: $0.005 (start) + (100 × $0.00296) = $0.301 per run
🎯 Use Cases
Discover Who's Active in a Community
See which users are posting and commenting in any subreddit — great for understanding who makes up a community.
Find Moderators and Key Users
Quickly spot moderators, premium users, and long-time members in any subreddit.
Check Community Member Profiles
Look up karma scores, trophies, and account details for active users in communities you're interested in.
Track User Activity Across Subreddits
See which other subreddits community members moderate — helpful for finding related communities.
Research Community Demographics
Get a snapshot of user accounts: how old they are, karma levels, premium status, and verification rates.
🌟 Why Choose This Actor
The fastest way to find active users in any subreddit — usernames, karma, trophies, and 20+ profile details per user.
| Feature | Reddit Community User | Manual Browsing | Reddit API |
|---|---|---|---|
| Pricing Model | ✅ Pay per use | ✅ Free | ❌ Complex OAuth |
| Data Depth | ✅ 20+ fields | ⚠️ Limited | ✅ Full access |
| Trophies | ✅ Included | ⚠️ Manual only | ✅ Available |
| Setup Time | ✅ Instant | ✅ None | ❌ OAuth setup |
| Export | ✅ JSON/CSV | ❌ Copy-paste | ⚠️ Custom code |
🚀 Quick Start
- Enter the subreddit name (e.g.
askreddit) and how many users you want - Click ▷ Start
- Download results in JSON, CSV, or Excel — or connect via the Apify API
💻 Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
community | string | ✅ Yes | Subreddit name or URL (apify, r/apify, or https://reddit.com/r/apify/) |
max_results | integer | ✅ Yes | Maximum number of community users to find (minimum 50) |
📝 Example Input
{"community": "apify","max_results": 100}
Supported community formats:
- Simple name:
apify,programming - With prefix:
r/apify - Full URL:
https://www.reddit.com/r/apify/
📤 Output Structure
| Field | Type | Description |
|---|---|---|
processor | string | URL of the Apify actor that processed this data |
processed_at | string | ISO 8601 timestamp when the data was processed |
id | string | Unique Reddit user identifier |
name | string | Display name of the user |
username | string | Reddit username |
avatar | string | URL of the user's avatar/snoovatar image |
about | string | Public bio/description of the user |
verified | boolean | Whether the account is verified |
verified_email | boolean | Whether the user has verified their email |
post_karma | integer | Total post karma |
comment_karma | integer | Total comment karma |
created | string | ISO 8601 timestamp when the account was created |
snoovatar | boolean | Whether the user prefers to show snoovatar |
is_blocked | boolean | Whether the user is blocked by the current user |
is_premium | boolean | Whether the user has Reddit Premium |
is_employee | boolean | Whether the user is a Reddit employee |
is_moderator | boolean | Whether the user moderates any subreddit |
is_suspended | boolean | Whether the account is suspended |
trophies | array | Trophies earned: name, icon, granted, description |
moderated | array | List of subreddits the user moderates |
multireddits | array | Custom multireddits created by the user |
📤 Example Output
{"processor": "https://apify.com/cheapget/reddit-community-user?fpr=aiagentapi","processed_at": "2026-01-01T08:42:33+00:00","id": "xlo9n","name": "DataScout","username": "LargeLine","avatar": "https://i.redd.it/snoovatar/avatars/example.png","about": "Data enthusiast and developer","verified": true,"verified_email": true,"post_karma": 76,"comment_karma": 90,"created": "2016-05-01T12:00:00+00:00","snoovatar": false,"is_blocked": false,"is_premium": false,"is_employee": false,"is_moderator": true,"is_suspended": false,"trophies": [{"name": "Verified Email","icon": "https://www.redditstatic.com/awards2/verified_email.png","granted": "2016-05-01T12:00:00+00:00","description": "Verified email address"}],"moderated": ["r/apify"],"multireddits": []}
🔌 Integrations
Connect this actor to your apps and workflows with the Apify API.
🐍 Python SDK
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_API_TOKEN")run_input = {'community': 'apify', 'max_results': 100}run = client.actor("cheapget/reddit-community-user").call(run_input=run_input)for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
🟨 JavaScript / Node.js SDK
import { ApifyClient } from "apify-client";const client = new ApifyClient({ token: "YOUR_APIFY_API_TOKEN" });const run = await client.actor("cheapget/reddit-community-user").call({runInput: {community: "apify",max_results: 100,},});for await (const item of client.dataset(run.defaultDatasetId).iterateItems()) {console.log(item);}
🌐 REST API (curl)
curl -X POST "https://api.apify.com/v2/acts/cheapget~reddit-community-user/runs?token=YOUR_TOKEN" \-H "Content-Type: application/json" \-d '{"community": "apify", "max_results": 100}'
Ⓜ️ Make.com Integration
Get Started with Make.com (1000 Free Credits) 🎁
Step 1: Add the Make.com module "Run an Actor"Step 2: Enable mapping and paste Actor ID `QlV6JXKESJembXKsQ`Step 3: Paste the input JSON and run synchronouslyStep 4: Add "Get Dataset Items" with `defaultDatasetId`
🎱 N8N.io Integration
Open Source Workflow Automation ⚡
Step 1: Add the Apify node "Run an Actor and get dataset"Step 2: Set Selection Mode to By IDStep 3: Paste Actor ID `QlV6JXKESJembXKsQ`Step 4: Add your input JSON and read items from `defaultDatasetId`
📚 API Documentation
- Python API — Python client documentation with examples
- JavaScript API — Node.js and browser integration guide
- API Reference — Full REST API reference
🏗️ JSON-LD Metadata
{"@context": "https://schema.org","@type": "SoftwareApplication","name": "Reddit Community User - Find Active Users in Any Subreddit","applicationCategory": "UtilitiesApplication","applicationSubCategory": "Reddit Community User Lookup","operatingSystem": "Cloud","offers": {"@type": "Offer","price": "0.00","priceCurrency": "USD","priceValidUntil": "2099-12-31","availability": "https://schema.org/InStock"},"description": "Find active users in any subreddit — with karma, account age, trophies, and moderator roles.","featureList": ["Complete User Profiles","Account Status Flags","Trophies & Activity"],"keywords": "reddit community user, subreddit members, reddit user lookup, reddit karma checker","author": {"@type": "Organization","name": "cheapget","url": "https://apify.com/cheapget?fpr=aiagentapi"},"softwareVersion": "1.0.0","datePublished": "2024-01-01","dateModified": "2026-04-16"}
🚀 Performance Tips
Get the best results from your user lookups with these tips:
💰 Cost Optimization
- Start Small: Test with
max_results: 50before running larger numbers - Track Spending: Check the Apify Console usage tab for real-time cost tracking
- Active Subreddits: Larger communities yield more unique users per run
⚡ Speed Optimization
- Active Subreddits: Larger, active communities return results faster
- Off-Peak Hours: Avoid Reddit peak traffic (9 AM – 5 PM EST) for faster responses
🛡️ Data Quality Tips
- Public Only: Make sure the community is public — private subreddits won't return results
- Small Communities: Less active subreddits may have fewer identifiable users
- Suspended Accounts: Some users may have incomplete data due to suspensions or deletions
❓ FAQ
How are community users found?
Users are found from posts and comments within the subreddit, so results show active community members rather than a complete subscriber list.
Can I search private subreddits?
No — only public communities are accessible.
What's the difference between post_karma and comment_karma?
post_karma counts upvotes on submitted links and posts. comment_karma counts upvotes on comments. Both are shown separately for each user.
How long does it take?
- 50 users: under 1 minute
- 100 users: 1–3 minutes
- 500 users: 5–15 minutes
What is the minimum number of results?
The minimum is 50 users per run.
Is this free?
No, but it's very affordable — just $0.00296 per user profile plus a $0.005 start fee. Getting 100 users costs about $0.30.
🏷️ SEO Keywords
🔍 Primary Keywords: reddit community user, subreddit members, reddit user lookup, find reddit users, subreddit active users
📝 Long-Tail Keywords: how to find active users in a subreddit, look up reddit community members, get user list from any subreddit, reddit community member profiles, find moderators in a subreddit
🏢 Industry Keywords: reddit community research, subreddit user analysis, reddit member profiles, community user lookup, reddit karma checker
🌍 Location Keywords: reddit users united states, subreddit members uk, reddit user lookup worldwide, reddit profiles india, reddit accounts canada, reddit users australia
💡 Use Case Keywords: find active reddit users free, check who posts in a subreddit, reddit community member search, look up subreddit contributors, reddit user karma lookup
⚖️ Legal & Compliance
This tool accesses publicly available data only. It does not bypass authentication, access private content, or violate platform terms of service. You are responsible for:
- Data Rights: Ensuring you have permission to use the data you collect
- Privacy Compliance: Following GDPR, CCPA, and other applicable privacy laws
- Platform Terms: Respecting Reddit's terms of service and usage policies
- Ethical Use: Using the data responsibly and in compliance with applicable laws
🔗 Related Actors
💼 Jobs
- Best Job Search — Find jobs on LinkedIn, Indeed, Glassdoor & more in one search
- Glassdoor Job Search — Search Glassdoor jobs with salary info and company ratings
- Indeed Job Search — Find Indeed jobs with salaries, locations & company details
- LinkedIn Job Search — Search LinkedIn jobs with applicant counts and company info
🎬 Videos
- Best Video Downloader — Download videos from 1000+ sites in any quality
- TikTok Video Downloader — Save TikTok videos without watermarks
- YouTube Video Downloader — Download YouTube videos with comments and metadata
- Video Subtitles Downloader — Get subtitles from any video URL
- TikTok Live Recorder — Record TikTok live streams with full details
- TikTok Video Profile — Get TikTok video details, captions, hashtags & stats
- YouTuber Profile — Look up YouTube channel info and subscriber counts
- Video To Text — Turn any video into text with timestamps
- Instagram To Text — Turn Instagram videos into text transcripts
📱 Social Media
- Social Media Marketing — Generate ready-to-post social media content
- Find Anyone On LinkedIn — Look up anyone's LinkedIn profile
- Find Any Company On LinkedIn — Look up any company's LinkedIn page
- X User Profile — Look up any X (Twitter) user profile
- X Community Profile — Check X community details and membership
- Reddit Community User — Find active users in any subreddit
- Reddit Community Profile — Look up subreddit info, rules & stats
- Reddit Community Post — Get posts from any subreddit with comments and votes
- Reddit Post Search — Search Reddit posts by keyword
- Reddit User Profile — Look up any Reddit user's profile and karma
✈️ Telegram
- Telegram Group Member — Get member lists from public Telegram groups
- Telegram Channel Message — Get messages from Telegram channels
- Telegram Profile — Look up Telegram user, group, or channel profiles
🏠 Local & Real Estate
- Google Business Profile — Find local businesses with reviews, ratings & contact info
- Zillow Real Estate — Search Zillow listings with prices, photos & details
- US Real Estate — Find US property listings with prices and home details
🤝 Support & Community
📧 Support: Contact Us 💬 Community: Telegram Group
Last Updated: April 16, 2026
