VOOZH about

URL: https://apify.com/agentx/subreddit-member-scraper?fpr=aiagentapi

⇱ SubReddit Member Scraper Β· Apify


Pricing

from $3.39 / 1,000 results

Go to Apify Store

SubReddit Member Scraper

Surface up to 10,000 active contributors from any subreddit β€” the actual users posting and commenting, not just the silent subscriber count. Each record returns username, post karma, comment karma, account age, verified-email status, and bio for downstream audience profiling or moderator vetting.

Pricing

from $3.39 / 1,000 results

Rating

5.0

(2)

Developer

πŸ‘ AgentX

AgentX

Maintained by Community

Actor stats

2

Bookmarked

8

Total users

0

Monthly active users

a month ago

Last modified

Share

Subreddit Member Scraper - Subreddit Member Intelligence API

Subreddit Member Scraper is a subreddit member intelligence API that extracts structured Reddit subscriber profiles, karma forensics, and account-quality flags from any public subreddit in a single subreddit-name-driven run. Subreddit Member Scraper returns structured records per member, including username, post karma, comment karma, total karma, account creation date, verified flag, is_suspended flag, is_premium flag, is_moderator flag, moderator roles array, trophies array with grant dates, profile icon URL, account age in days, and Reddit profile URL. Coverage spans all public Reddit communities globally, including subscriber lists for any active subreddit. Built for audience segmentation, influencer discovery, community-persona research, ad-targeting list construction, B2B persona enrichment, moderation-network mapping, and Reddit-community-analysis pipelines. Up to 10,000 member records per run, with pay-per-result pricing at $0.00364 per member and no monthly minimum.

πŸ‘ Reddit
πŸ‘ Member Intelligence
πŸ‘ Audience Profiling


Why Choose This API

Structured Subreddit Member Data for B2B Audience Research Pipelines

πŸ“Š Karma-Based Audience Segmentation The post_karma and comment_karma fields deliver per-member engagement history signals β€” enabling karma-tier audience segmentation, influencer identification, and community contributor scoring for audience intelligence and persona research pipelines.

πŸ›‘οΈ Account Quality Flags The verified, verified_email, is_suspended, is_premium, is_employee, and is_blocked flags deliver per-member account quality signals β€” enabling bot detection, account legitimacy scoring, and audience quality assessment for platform trust and safety research.

πŸ”§ Moderator Network Identification The is_moderator flag identifies community moderators within the member list β€” enabling power user mapping, community governance intelligence, and influencer identification for Reddit ecosystem analysis.

πŸ† Trophy-Based Account Age Verification The trophies array captures achievement history with grant dates β€” enabling account longevity scoring, milestone-based credibility verification, and community tenure analysis for persona research workflows.

πŸ‘₯ Bulk Community Audience Extraction Extract up to 10,000 member profiles per subreddit run β€” enabling comprehensive community audience datasets, representative sampling, and longitudinal member analysis for B2B market research and audience intelligence.


Quick Start Guide

How to Extract Subreddit Member Data in 3 Steps

Step 1: Identify the Target Community

Enter the subreddit name with or without the r/ prefix (e.g., investing, r/investing, or the full URL). The field is case-insensitive.

Step 2: Configure and Run the Actor

Open Actor Input

Set the community name and max_results volume cap, then click Start.

Step 3: Download Your Data

Export results as JSON or CSV, or access programmatically via the Apify dataset API.


Input Parameters

Configuration Fields

ParameterTypeRequiredDescriptionExample Values
communitystringβœ…Subreddit name (with or without r/ prefix, or full URL)"investing", "r/MachineLearning"
max_resultsintegerβœ…Maximum number of members to extract (50–10,000)50, 500, 2000

Example Input Configuration

{
"community":"investing",
"max_results":500
}

Output Data Schema

Complete Member Profile Record Structure

Each extracted subreddit member record contains the following fields:

Open Actor Output

Core Member Profile Fields

FieldTypeDescription
processorstringApify actor URL that processed this record
processed_atstringISO 8601 timestamp (UTC) when scraped
idstringUnique Reddit user ID
namestringDisplay name of the user
usernamestringReddit username handle
avatarstringProfile avatar image URL
aboutstringPublic bio/description
verifiedbooleanAccount verification status
verified_emailbooleanEmail verification status
post_karmaintegerTotal post karma
comment_karmaintegerTotal comment karma
createdstringAccount creation ISO 8601 timestamp
snoovatarbooleanSnoovatar display preference
is_blockedbooleanBlock status
is_premiumbooleanReddit Premium status
is_employeebooleanReddit employee flag
is_moderatorbooleanSubreddit moderator flag
is_suspendedbooleanAccount suspension status
trophiesarrayTrophy list with grant dates

Example JSON Output

{
"processor":"https://apify.com/agentx/subreddit-member-scraper?fpr=aiagentapi",
"processed_at":"2026-05-01T10:30:00.000Z",
"id":"xlo9n",
"username":"DataScout",
"post_karma":4200,
"comment_karma":18500,
"verified":true,
"verified_email":true,
"is_premium":false,
"is_moderator":false,
"is_suspended":false,
"created":"2019-03-15T00:00:00+00:00",
"trophies":[
{"name":"Verified Email","granted":"2019-03-15T00:00:00+00:00"}
]
}

Export Formats

  • JSON - Complete structured data with all metadata
  • CSV - Spreadsheet-compatible for BI and analytics tools
  • API Access - Programmatic access via Apify Client SDK
  • Cloud Storage - Automatic upload to Apify Dataset

Integration Examples

Actor ID for Platform Integration

lFt4Jcm2UW4qUUJpo

Ⓜ️ Make.com Setup:

  1. Login to Make.com (Get 1000 Free Credits)
  2. Add module "Run an Actor"
  3. Turn 'Map' on - right side of the 'Actor*'
  4. Paste Actor ID - from above
  5. Click the '⟳ Refresh' - left side of Map
  6. Input JSON* - Modify the parameters as needed
  7. Set "Run synchronously" to YES
  8. Add module "Get Dataset Items" - receive the result
  9. In Dataset ID* select defaultDatasetId

🎱 N8N.io Setup:

  1. Add 'Run an Actor and get dataset' - from the apify node
  2. Actor β†’ By ID β†’ Paste Actor ID - from above
  3. Input JSON - Modify the parameters as needed

Python Integration Example

from apify_client import ApifyClient
client = ApifyClient('YOUR_API_TOKEN')
run_input ={
"community":"investing",
"max_results":500
}
run = client.actor("lFt4Jcm2UW4qUUJpo").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript/Node.js Integration

import{ ApifyClient }from"apify-client";
const client =newApifyClient({token:"YOUR_API_TOKEN"});
const input ={
community:"MachineLearning",
max_results:200,
};
const run =await client.actor("lFt4Jcm2UW4qUUJpo").call(input);
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item)=> console.log(item));

JSON-LD Metadata

{
"@context":"https://schema.org",
"@graph":[
{
"@type":"SoftwareApplication",
"@id":"https://apify.com/agentx/subreddit-member-scraper#software",
"name":"Subreddit Member Scraper",
"description":"Subreddit Member Scraper is a subreddit member intelligence API extracting structured subscriber profiles with karma scores, account flags, moderator roles, trophy history, and verification status for audience segmentation and community persona research.",
"applicationCategory":"BusinessApplication",
"applicationSubCategory":"Lead Generation API",
"operatingSystem":"Web, Cloud",
"url":"https://apify.com/agentx/subreddit-member-scraper?fpr=aiagentapi",
"softwareVersion":"1.0.0",
"datePublished":"2024-08-01",
"dateModified":"2026-05-01",
"featureList":[
"Username, post karma, and comment karma",
"Verified, is_premium, is_moderator, is_suspended flags",
"Moderator roles and trophies with grant dates",
"Account creation date and age",
"Profile icon URL and Reddit profile URL",
"Up to 10,000 members per run",
"Per-member pay-per-result at $0.00364",
"Native integrations with Make.com, n8n, LangChain, and CrewAI"
],
"offers":{
"@type":"Offer",
"price":"0.00364",
"priceCurrency":"USD",
"availability":"https://schema.org/InStock"
},
"author":{"@id":"https://apify.com/agentx#person"},
"publisher":{"@id":"https://apify.com#organization"}
},
{
"@type":"Person",
"@id":"https://apify.com/agentx#person",
"name":"AgentX",
"url":"https://apify.com/agentx",
"sameAs":[
"https://apify.com/agentx",
"https://t.me/AiAgentApi",
"https://t.me/Apify_Actor"
],
"knowsAbout":[
"web scraping",
"Reddit",
"subreddit members",
"audience profiling",
"persona research"
]
},
{
"@type":"BreadcrumbList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"name":"Apify",
"item":"https://apify.com"
},
{
"@type":"ListItem",
"position":2,
"name":"AgentX",
"item":"https://apify.com/agentx"
},
{
"@type":"ListItem",
"position":3,
"name":"Subreddit Member Scraper",
"item":"https://apify.com/agentx/subreddit-member-scraper"
}
]
}
]
}

Pricing & Cost Calculator

Pay-Per-Result Pricing

EventRate
Actor Start$0.005 per GB memory
Result (per member)$0.00364 (BRONZE)

Cost Calculator Examples

MembersEstimated Cost
50 members~$0.19
200 members~$0.73
500 members~$1.82
1,000 members~$3.64
5,000 members~$18.20
10,000 members~$36.40

Use Cases & Applications

Audience Research & Persona Intelligence

Community Audience Profiling Extract member profiles from topic-relevant subreddits β€” building karma-stratified audience datasets for B2B persona research, audience segmentation, and community composition analysis.

Influencer & Power User Discovery Sort extracted members by post_karma and comment_karma β€” identifying high-influence community contributors, niche opinion leaders, and Reddit power users for influencer intelligence.

Account Age & Loyalty Segmentation The created timestamp and trophies array enable account-age distribution analysis β€” revealing community tenure segments, loyal member identification, and community cohort mapping.

Trust & Safety Research

Bot Detection & Account Quality Scoring Combine verified_email, is_suspended, post_karma, comment_karma, and created β€” building account legitimacy scoring models and bot pattern detection datasets for platform trust and safety research.

Moderator Network Mapping The is_moderator flag within a large member extraction reveals governance density β€” enabling moderator ratio analysis and community governance intelligence across Reddit communities.


FAQ

Can I enter the subreddit with the r/ prefix?

Yes β€” the actor accepts the subreddit name with or without the r/ prefix, or as a full Reddit URL.

What is the maximum number of members per run?

The max_results parameter supports up to 10,000 members per run (minimum 50).

How does this differ from SubReddit Info Scraper?

SubReddit Info Scraper extracts community-level metadata (subscriber count, category, rules). This actor extracts individual member profiles with per-user karma, flags, and account metadata.

Can I combine this with Reddit Author Scraper?

Yes β€” use this actor to collect member usernames at scale, then enrich with Reddit Author Scraper for full post and comment history per author.


SEO Keywords & Search Terms

Primary Keywords

subreddit member scraper API, Reddit subscriber intelligence API, subreddit audience extraction, Reddit member profile API, subreddit member data extractor, Reddit community audience API, subreddit member list scraper, Reddit audience research API, subreddit subscriber profiling, Reddit user list extraction

Long-Tail Keywords

how to extract Reddit subreddit members programmatically, subreddit member karma data API, Reddit community audience segmentation, subreddit member list API, Reddit influencer discovery API, subreddit subscriber profile extractor, Reddit member intelligence pipeline, subreddit audience analysis API, Reddit community persona research, subreddit bot detection data

Industry Terms

subreddit member intelligence API, community audience profiling, karma segmentation pipeline, Reddit power user extraction, subreddit subscriber dataset, community persona research, audience quality scoring, Reddit influencer API, trust and safety intelligence, subreddit member enrichment


Trust & Certifications

  • βœ… Production-Grade Infrastructure β€” runs on the Apify cloud platform with managed proxy rotation and automatic retries
  • βœ… GDPR & CCPA-Region Aligned β€” extracts only publicly available subreddit member profiles; no personal contact data retained beyond the run session
  • βœ… Pay-Per-Result Billing β€” transparent $0.00364 per member with no monthly minimum or seat fees
  • βœ… Continuously Maintained β€” schema and selector updates released as Reddit evolves

Legal & Compliance

Data Rights & Usage

All data extracted by this actor originates from publicly available Reddit user profiles and subreddit member lists. Users are responsible for ensuring their use of extracted data complies with applicable laws and Reddit terms of service.

Privacy Compliance

  • GDPR: Compliant with EU GDPR for data processing workflows.
  • CCPA: Compliant with California Consumer Privacy Act requirements.

Platform Terms of Service

Users must review and comply with Reddit's developer terms of service when using extracted data.

Enterprise Support

For enterprise licensing, custom integrations, or compliance inquiries:


Related Tools

Jobs & Hiring

Social Media

Video & Transcript

E-Commerce & Retail

Classifieds & Automotive

Real Estate

Business Intelligence & Reviews

Other


Support & Community


Last Updated: May 01, 2026

You might also like

Reddit Author Scraper

agentx/reddit-author-scraper

Reddit user lookup API β€” pass any username and pull the profile (display name, bio, post karma, comment karma, verified-email flag, account age) plus up to 100,000 of their posts and 100,000 of their comments. Useful for moderator vetting, influencer research, and audience-segment profiling.

Reddit User Scraper - Profiles, Karma & Post History ($1.5/1k)

harshmaur/reddit-user-scraper

Scrape any Reddit user's profile from a username or URL β€” karma, account age, and full post and comment history. Built for audience research, moderation vetting, and OSINT on public data. No API key, no login. Export to CSV, Excel, or JSON. From $1.50 per 1,000 results.

4

5.0

Reddit Community Member

truefetch/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.

SubReddit Info Scraper

agentx/subreddit-info-scraper

Single-call subreddit profiler. Pass any community name (with or without the r/ prefix) and the response returns the official title, public description, subscriber count, active-member count, creation date, content rules, moderator list, and category tags for community due-diligence.

Reddit Profile Scraper

codingfrontend/reddit-profile-scraper

Scrape Reddit user profiles by username or profile URL β€” including karma, bio, avatar, account age, and optional recent posts and comments.

πŸ‘ User avatar

codingfrontend

2

Reddit Subreddit Users Scraper

codingfrontend/reddit-subreddit-users-scraper

Extract all unique users (post authors + comment authors) from a subreddit, with optional full profile details for each user.

πŸ‘ User avatar

codingfrontend

2

Reddit Profiles Scraper

parseforge/reddit-profiles-scraper

Collect public Reddit user profiles by keyword search or direct profile URL in one place. Get clear records with karma breakdown, Gold and moderator badges, verification status, follower count, and subreddit metadata to support recruiters, community analysts, and market research workflows.

Reddit User Profile

truefetch/reddit-user-profile

Deep-dive any Reddit account β€” karma breakdown, top subreddits, post and comment history, account age, and 19 fields. Up to 100,000 posts per user. $69 per 1,000.

311

5.0

REDDIT USERNAMES from Subreddit - Scraper

stifl/reddit-username-from-subreddit

βœ…Scrape/Extract the active Members of a subreddit! Enter a subreddit name and the amount of users you need, and our tool provides a list of active users for your desired subreddit. Ideal for marketers, researchers, and Reddit fans. No technical skills are needed, just insights at a click!βœ…

Telegram Member Scraper

agentx/telegram-member-scraper

Pull the full member roster from any public Telegram group β€” up to 10,000,000 users per run, with optional Deep Search to surface hidden and historical members the standard API hides. Each member record includes username, names, premium flag, language, and last-seen signal.