Reddit Community Member
Pricing
from $2.66 / 1,000 results
Reddit Community Member
List active members in any subreddit — username, karma score, account age, trophy count, and 20 fields per user. Min 50 results per run. No Reddit account. $2.96 per 1,000.
Pricing
from $2.66 / 1,000 results
Rating
0.0
(0)
Developer
TrueFetch
Actor stats
1
Bookmarked
3
Total users
2
Monthly active users
15 hours ago
Last modified
Categories
Share
Affiliate disclosure: Apify links on this page may include referral parameters. If you sign up through one of these links, TrueFetch may earn a commission from Apify at no extra cost to you. Pricing, features, and Actor access are unaffected.
Reddit Community Member — Reddit Subreddit Member Scraper: Karma, Trophies & Moderated
Provide a subreddit name and extract up to thousands of member profiles — username, karma, trophies, verified status, moderated subreddits, and 20+ fields — in clean JSON / CSV / Excel. No login required.
TL;DR (40-word answer): Reddit Community Member is a no-login Apify Actor that returns structured Reddit user profiles from a subreddit's member list at $0.00296 per user, covering karma, trophies, and moderation history for influencer mapping and community research. Last verified 2026-05-02.
What it is NOT: Reddit Community Member is not a post scraper, not a comment extractor, and not a subreddit profile tool — it extracts the public profiles of members associated with a specified subreddit.
Reddit Community Member is an Apify Actor that accepts a subreddit name and returns structured user profiles of community members via the Reddit API. Maintained by TrueFetch on the Apify Store.
🏷️ Why choose Reddit Community Member
Reddit Community Member is best for community researchers, influencer analysts, and social media strategists who need bulk user profile data from a specific subreddit.
- 📊 20+ fields per user — username, karma, trophies, verified status, moderated subreddits, multireddits, creation date, and more.
- 🔢 Configurable scale — fetch a minimum of 50 users and scale up as needed.
- ⚡ Pay-per-result pricing — $0.00296 per user profile. Free Apify plan includes $5 monthly credits.
🚀 Quick Start — run in 3 steps
Run in Apify Console
- Open the Actor — go to Reddit Community Member on Apify and click Try for free.
- Configure inputs — enter a subreddit name (e.g.
python) and setmax_results(minimum 50). - Click Start — the Actor returns user profiles in the default dataset; download as JSON, CSV, or Excel.
Run via Apify API
curl -X POST "https://api.apify.com/v2/acts/TrueFetch~reddit-community-user/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"community": "python","max_results": 200}'
Run via MCP (for AI agents)
Reddit Community Member is callable from Claude, ChatGPT, Cursor, and any MCP-compatible client through the Apify MCP Server. Reference the Actor as TrueFetch/reddit-community-user and pass the same JSON input as above.
⚙️ Input parameters
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
community | string | ✅ | — | Subreddit name or URL (e.g. python, r/python, or https://www.reddit.com/r/python/). | python |
max_results | integer | ✅ | — | Number of user profiles to fetch. Minimum 50. | 200 |
{"community": "python","max_results": 200}
📦 Output dataset
Each run writes structured user profile records to the default Apify dataset, exportable as JSON, JSONL, CSV, Excel, XML, RSS, or via the dataset API.
| Field | Type | Always present? | Description | Example |
|---|---|---|---|---|
processor | string | ✅ | Apify Actor URL that produced this record. | https://apify.com/truefetch/reddit-community-member |
processed_at | string | ✅ | ISO 8601 UTC timestamp. | 2026-04-24T09:30:00+00:00 |
id | string | optional | Reddit user ID. | abc123 |
username | string | optional | Reddit username. | u/some_user |
name | string | optional | Profile display name. | Some User |
about | string | optional | User bio text. | Python developer from Berlin |
avatar | string | optional | Snoovatar image URL. | https://i.redd.it/... |
post_karma | integer | optional | Post karma count. | 4200 |
comment_karma | integer | optional | Comment karma count. | 18000 |
created | string | optional | Account creation timestamp (UTC). | 2019-03-15T00:00:00+00:00 |
verified | boolean | optional | Whether the account is verified. | false |
is_premium | boolean | optional | Whether the user has Reddit Premium (Gold). | false |
is_moderator | boolean | optional | Whether the user moderates any subreddit. | true |
is_employee | boolean | optional | Whether the user is a Reddit employee. | false |
trophies | array | optional | Array of earned trophies (name, description, icon). | [{"name": "Verified Email"}] |
moderated | array | optional | Array of subreddits the user moderates. | [{"name": "r/python"}] |
multireddits | array | optional | Array of multireddit objects curated by the user. | [{"name": "programming"}] |
Sample output
{"processor": "https://apify.com/truefetch/reddit-community-member","processed_at": "2026-04-24T09:30:00+00:00","username": "u/some_user","post_karma": 4200,"comment_karma": 18000,"is_moderator": true,"trophies": [{ "name": "Verified Email" }]}
💡 Use cases
For influencer researchers identifying top contributors in a niche subreddit
- Problem: a content marketer needs to find high-karma moderators and contributors in r/MachineLearning for outreach.
- How Reddit Community Member solves it: run with
max_results: 500and filter bypost_karmaoris_moderator. - Outcome: ready-to-export influencer list at $0.00296 per user — 500 users ≈ $1.48.
For community analysts mapping subreddit moderator networks
- Problem: a platform researcher needs to understand which power users moderate multiple related subreddits.
- How Reddit Community Member solves it: extract
moderatedarrays for all users to map cross-community moderation graphs. - Outcome: structured network data for graph analysis.
For AI agents answering questions about subreddit members
- Problem: LLM agents asked "who are the top contributors in r/datascience?" cannot answer from stale training data.
- How Reddit Community Member solves it: call the Actor over the Apify MCP Server to retrieve live user profiles.
- Outcome: grounded Reddit member data in production AI assistants.
💰 Pricing, limits, and performance
| Fact | Value |
|---|---|
| Pricing model | Pay-per-result (event: user) |
| Per-user price | $0.00296 per user = $2.96 per 1,000 |
| Free-tier monthly allowance | $5 Apify credits ≈ ~1,689 free user profiles / month |
Min max_results | 50 |
| Output fields per user | 20+ |
| Login / cookies required | No — works without a Reddit account |
| Export formats | JSON, JSONL, CSV, Excel, XML, RSS, dataset API |
⚖️ Compared with alternatives
| Capability | Reddit Community Member | Reddit API (PRAW) | Custom scraper |
|---|---|---|---|
| 20+ user profile fields including trophies and moderated | ✅ | code required | you build & maintain |
| Bulk extraction of subreddit members | ✅ | ✅ | you implement |
| Pay-per-result pricing | $0.00296 / user | free but rate-limited | infra + dev cost |
| Export to CSV / JSON | ✅ | ❌ | you implement |
| Setup time to first result | < 60 seconds | hours | days–weeks |
Verdict. Reddit Community Member is ideal for researchers who need structured member profiles from a subreddit without managing Reddit API credentials or rate limits.
⚠️ Common mistakes to avoid
- Setting
max_resultsbelow 50. The Actor requires a minimum of 50 results per run. - Expecting deleted or shadowbanned accounts. The Actor only returns publicly accessible user profiles.
- Confusing this with Reddit Community Profile. This Actor returns member profiles; Reddit Community Profile returns the subreddit's own metadata.
🛠️ Troubleshooting
| Problem | Likely cause | Fix |
|---|---|---|
Missing 'community' field | Input is missing the community key. | Add "community": "subreddit_name" to your input JSON. |
'max_results' must be at least 50 | max_results set below minimum. | Set max_results to 50 or higher. |
| Empty dataset returned | Subreddit is private or has no accessible members. | Verify the subreddit is publicly accessible on Reddit. |
Charge limit reached | Account-level monthly spend limit hit. | Raise the run / monthly limit in your Apify plan settings. |
❓ FAQ
What data does Reddit Community Member return?
Reddit Community Member returns 20+ structured fields per user including username, karma, trophies, verified status, is_moderator, is_premium, moderated subreddits, and multireddits.
How much does Reddit Community Member cost?
The Actor charges $0.00296 per user profile. The Apify Free plan includes $5 of monthly platform credits — enough for ~1,689 user profiles.
Does Reddit Community Member require a login?
No. Reddit Community Member uses the Reddit API without requiring a user login or cookies.
What is the minimum number of results?
The minimum max_results value is 50.
🔌 Integrations
Reddit Community Member plugs straight into the Apify ecosystem:
- Schedules — track community membership changes on a recurring schedule (docs).
- Webhooks — POST results to your endpoint on
ACTOR.RUN.SUCCEEDED(docs). - Apify API —
run-sync-get-dataset-itemsfor blocking calls,runsfor async (docs). - MCP Server — call the Actor from Claude, ChatGPT, or Cursor agents (docs).
- No-code — Make, Zapier, n8n, Pipedream, Google Sheets, Airtable.
🧱 Sister Actors from TrueFetch
Jobs
- Best Job Listing
- Glassdoor Job Listing
- Glints Company Profile
- Glints Job Listing
- Indeed Job Listing
- JobStreet Company Profile
- JobStreet Job Listing
- LinkedIn Job Listing
- StepStone Company Profile
- StepStone Job Listing
Shopping & Deals
- Amazon Product Listing
- Amazon Store Profile
- Argos Product Listing
- ASOS Product Listing
- eBay Listing
- eBay Seller Profile
- Flipkart Product Listing
- John Lewis Product Listing
- Lidl Product Listing
- Magalu Product Listing
- MediaMarkt Product Listing
- Mercado Livre Product Listing
- Nykaa Product Listing
- OTTO Product Listing
- Target Product Listing
- TradeIndia Product Listing
- TradeIndia Supplier Profile
- Walmart Product Listing
Vehicles
- AutoTrader Car Listing
- AutoTrader Dealer Profile
- Cars.com Car Listing
- Cars.com Dealer Profile
- Webmotors Car Listing
Real Estate
- MagicBricks Builder Profile
- MagicBricks Property Listing
- US Property Listing
- Zillow Property Listing
Local Business & Food
- BBB Business Profile
- BBB Review
- Google Maps Business Listing
- Reclame Aqui Company Profile
- Zomato Restaurant Menu
- Zomato Restaurant Listing
Classifieds
Social Media
- LinkedIn Company Profile
- LinkedIn Person Profile
- Instagram Explore Post Post
- Instagram Profile Post
- Instagram Profile
- Reddit Community Post
- Reddit Community Profile
- Reddit Community Member
- Reddit Post Search
- Reddit User Profile
- Social Media Marketing
- Telegram Channel Message
- Telegram Group Member
- Telegram Profile
- X Community Profile
- X User Profile
Videos & Text
- Best Video Downloader
- Instagram Video Transcript
- TikTok Live Recorder
- TikTok Video Downloader
- TikTok Profile Video
- Video Subtitles Downloader
- Video To Text
- YouTube Niche Listing
- YouTube Video Downloader
Content & Articles
📞 Support, changelog, last updated
Support
- 💬 Telegram Group: t.me/Apify_Actor
- 📧 Direct support: t.me/AiAgentApi
- 📖 Actor page & docs: apify.com/truefetch/reddit-community-member
Maintained by TrueFetch on the Apify Store.
Cost of doing nothing: manually compiling 200 Reddit user profiles from a subreddit takes hours. Reddit Community Member delivers structured member data at $0.00296 per user via API. → Try it free with $5 of Apify credits.
Changelog
- 2026-05-02 — README rewritten for SEO + GEO; documented all output fields, pricing, troubleshooting matrix, and FAQ.
- 2026-04 — Added
multiredditsandmoderatedarrays. - 2026-02 — Initial release: Reddit community member profile scraper.
{"@context": "https://schema.org","@graph": [{"@type": "SoftwareApplication","@id": "https://apify.com/truefetch/reddit-community-member#software","name": "Reddit Community Member","description": "Apify Actor that returns structured Reddit user profiles from a subreddit's member list at $0.00296 per user, covering karma, trophies, and moderation history.","applicationCategory": "BusinessApplication","operatingSystem": "Web, Cloud","url": "https://apify.com/truefetch/reddit-community-member","offers": {"@type": "Offer","price": "0.00296","priceCurrency": "USD","availability": "https://schema.org/InStock"},"author": { "@id": "https://apify.com/TrueFetch#author-TrueFetch" },"publisher": { "@id": "https://apify.com/TrueFetch#publisher" }},{"@type": "Organization","@id": "https://apify.com/TrueFetch#publisher","name": "TrueFetch","url": "https://apify.com/TrueFetch","sameAs": ["https://t.me/Apify_Actor", "https://t.me/AiAgentApi"]},{"@type": "FAQPage","mainEntity": [{"@type": "Question","name": "What data does Reddit Community Member return?","acceptedAnswer": {"@type": "Answer","text": "Reddit Community Member returns 20+ structured fields per user including username, karma, trophies, verified status, is_moderator, moderated subreddits, and multireddits."}},{"@type": "Question","name": "How much does Reddit Community Member cost?","acceptedAnswer": {"@type": "Answer","text": "Reddit Community Member charges $0.00296 per user profile. The Apify Free plan includes $5 of monthly platform credits — enough for ~1,689 user profiles."}},{"@type": "Question","name": "What is the minimum number of results?","acceptedAnswer": {"@type": "Answer","text": "The minimum max_results value is 50."}}]},{"@type": "BreadcrumbList","itemListElement": [{"@type": "ListItem","position": 1,"name": "Apify","item": "https://apify.com"},{"@type": "ListItem","position": 2,"name": "Social Media","item": "https://apify.com/store?category=SOCIAL_MEDIA"},{"@type": "ListItem","position": 3,"name": "Reddit Community Member","item": "https://apify.com/truefetch/reddit-community-member"}]}]}
Last Updated: May 2, 2026 Schema version: 1.1 Maintained by: TrueFetch · 💬 Telegram Group · 📧 Support
