Reddit Community User avatar

Reddit Community User

Pricing

from $2.66 / 1,000 results

Go to Apify Store
Reddit Community User

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

CheapGET

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

2

Monthly active users

7 hours ago

Last modified

Share

Reddit Community User - Find Active Users in Any Subreddit

Support Rating Reliability Reddit Community User

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

ResourceCostDescription
Actor Start$0.005Charged when the Actor starts running (one event per GB of memory, minimum one)
Result$0.00296Charged 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.

FeatureReddit Community UserManual BrowsingReddit API
Pricing ModelPay per use✅ Free❌ Complex OAuth
Data Depth20+ fields⚠️ Limited✅ Full access
TrophiesIncluded⚠️ Manual only✅ Available
Setup TimeInstant✅ None❌ OAuth setup
ExportJSON/CSV❌ Copy-paste⚠️ Custom code

🚀 Quick Start

  1. Enter the subreddit name (e.g. askreddit) and how many users you want
  2. Click ▷ Start
  3. Download results in JSON, CSV, or Excel — or connect via the Apify API

💻 Input Parameters

ParameterTypeRequiredDescription
communitystring✅ YesSubreddit name or URL (apify, r/apify, or https://reddit.com/r/apify/)
max_resultsinteger✅ YesMaximum 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

FieldTypeDescription
processorstringURL of the Apify actor that processed this data
processed_atstringISO 8601 timestamp when the data was processed
idstringUnique Reddit user identifier
namestringDisplay name of the user
usernamestringReddit username
avatarstringURL of the user's avatar/snoovatar image
aboutstringPublic bio/description of the user
verifiedbooleanWhether the account is verified
verified_emailbooleanWhether the user has verified their email
post_karmaintegerTotal post karma
comment_karmaintegerTotal comment karma
createdstringISO 8601 timestamp when the account was created
snoovatarbooleanWhether the user prefers to show snoovatar
is_blockedbooleanWhether the user is blocked by the current user
is_premiumbooleanWhether the user has Reddit Premium
is_employeebooleanWhether the user is a Reddit employee
is_moderatorbooleanWhether the user moderates any subreddit
is_suspendedbooleanWhether the account is suspended
trophiesarrayTrophies earned: name, icon, granted, description
moderatedarrayList of subreddits the user moderates
multiredditsarrayCustom 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 ApifyClient
client = 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 synchronously
Step 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 ID
Step 3: Paste Actor ID `QlV6JXKESJembXKsQ`
Step 4: Add your input JSON and read items from `defaultDatasetId`

📚 API Documentation

🏗️ 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: 50 before 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

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

💼 Jobs

🎬 Videos

📱 Social Media

💬 Reddit

✈️ Telegram

🏠 Local & Real Estate

🤝 Support & Community

📧 Support: Contact Us 💬 Community: Telegram Group


Last Updated: April 16, 2026