Reddit Scraper - Posts, Comments, Subreddits & Users avatar

Reddit Scraper - Posts, Comments, Subreddits & Users

Pricing

from $0.50 / 1,000 results

Go to Apify Store
Reddit Scraper - Posts, Comments, Subreddits & Users

Reddit Scraper - Posts, Comments, Subreddits & Users

Fast, reliable Reddit scraper. Extract posts, comments, subreddits & users from any subreddit without Reddit API keys or login. AI-ready JSON for LLM training, sentiment analysis, lead generation. Export JSON/CSV/Excel.

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

deusex machine

deusex machine

Maintained by Community

Actor stats

2

Bookmarked

92

Total users

27

Monthly active users

2 days ago

Last modified

Categories

Share

Reddit Scraper — Posts, Comments, Subreddits & Users API

Reddit Scraper is a fast, reliable Reddit data extraction tool that lets you scrape posts, comments, subreddits, and users from any subreddit or Reddit search query — without a Reddit API key, without login, and without rate limits. Extract structured JSON data ready for LLM pipelines, AI training, sentiment analysis, lead generation, market research, and brand monitoring.

Unlike the official Reddit API, this scraper has no OAuth setup, no app registration, no 60-requests-per-minute cap, and no 10-post limit per subreddit listing. Just give it a list of subreddits or a search query and it returns clean, normalized Reddit data in JSON, CSV, or Excel.

29 post fields · 10 comment fields · Nested comment threads · Image galleries · Flairs · Subreddit stats · Search any query · Export to JSON/CSV/Excel

✨ Why use this scraper

The Reddit API is powerful, but it's also:

  • Rate-limited: 60 requests per minute per OAuth client, 10 posts per listing page.
  • Authenticated: Requires app registration, OAuth flow, and token refresh logic.
  • Incomplete: Doesn't return all fields the public web UI shows (upvote ratios, galleries, media metadata).
  • Unpredictable: Terms-of-service changes have repeatedly broken third-party Reddit API consumers.

This Reddit scraper gives you:

  • No Reddit API key needed — extracts Reddit data from public JSON endpoints.
  • No login, no OAuth — scrape Reddit anonymously, no credentials to manage.
  • High throughput — 1,000+ Reddit posts per run, concurrent subreddits, session persistence.
  • Rich Reddit data — 29 fields per post, 10 fields per comment, nested replies up to depth 3.
  • AI-ready JSON output — plug directly into LLM pipelines, RAG systems, or sentiment analysis models.
  • Multiple export formats — JSON, CSV, Excel (XLSX), or direct API access via the Apify Dataset API.
  • 99%+ success rate — automatic proxy rotation, retries, and session reuse keep your scraping jobs stable.

📤 Output fields

Every Reddit post is returned with 29 normalized fields covering text content, media, scoring, flairs, subreddit metadata, and timestamps. When comments are enabled, the scraper also returns the nested comment tree as structured JSON.

Post fields (29)

FieldDescription
idReddit post ID (e.g. t3_1s6e3dp)
subredditSubreddit name (e.g. technology)
titlePost title
authorReddit username of the post author
scoreNet upvotes minus downvotes
upvoteRatioUpvote ratio (e.g. 0.95 = 95% upvotes)
numCommentsTotal comment count
urlReddit permalink to the post
selftextPost body for text posts (up to 5,000 chars)
thumbnailThumbnail preview URL
imageUrlsAll image URLs from galleries and image posts
mediaVideo URL + duration, or image URL
createdPost creation time (ISO 8601)
editedLast edit timestamp, or false
isVideoVideo post flag
isSelfText post (true) vs link post (false)
isGalleryMulti-image gallery post
domainSource domain (e.g. youtube.com, self.technology)
linkUrlExternal URL for link posts
flairPost flair (e.g. Discussion, News, Privacy)
awardsTotal Reddit awards
isNSFWNSFW flag
isSpoilerSpoiler flag
isPinnedPinned/stickied by mods
numCrosspostsTimes crossposted to other subreddits
subredditSubscribersSubreddit subscriber count
postTypeClassification: text, link, video, image, gallery
scrapedAtScraping timestamp (ISO 8601)
commentsArray of comments (when enabled)

Comment fields (10)

FieldDescription
idComment ID
authorCommenter Reddit username
bodyComment text (up to 2,000 chars)
scoreNet upvotes
createdTimestamp (ISO 8601)
depthNesting level (0 = top-level, 1 = reply, 2 = reply-to-reply)
isSubmitterWhether the commenter is the post author
parentIdParent comment or post ID
controversialityControversy flag (0 or 1)
repliesNumber of direct replies

🎯 Use cases

Reddit data powers some of the most valuable public datasets for AI, research, and market intelligence. Here's how teams use this Reddit scraper:

1. AI & LLM training data

Reddit posts and comments are a gold mine for training conversational AI, instruction-tuning LLMs, and building RAG systems. The scraper outputs clean JSON that drops straight into your embedding pipeline. Use the searchQuery input to filter for domain-specific Reddit data (e.g. medical, legal, finance).

2. Sentiment analysis & brand monitoring

Extract Reddit posts and comments mentioning your brand, product, or competitors. Feed them into VADER, RoBERTa, or an LLM and track sentiment trends over time. The scraper's comment threading means you capture full discussion context, not isolated quotes.

3. Lead generation

Search Reddit for people asking for solutions your product solves. The scraper supports filters like searchQuery: "best CRM for small business" or sort: top, timeFilter: month to find high-intent prospects. Combine with the author field to build contact lists.

4. Market research

Monitor entire subreddits (e.g. r/smallbusiness, r/saas, r/entrepreneur) for trending topics, pain points, and recurring questions. The scraper returns subreddit subscriber counts, post engagement, and time-based filters so you can segment by reach and recency.

5. Academic research

Researchers use Reddit data for computational social science, public health monitoring, and linguistic analysis. This scraper gives you reproducible, timestamp-stamped Reddit data without the friction of the Reddit API's OAuth flow.

6. Content discovery & trend spotting

Journalists, newsletter writers, and content marketers scrape Reddit to surface emerging topics before they hit mainstream media. Sort by rising or top/day to catch conversations at the right moment.

7. Competitor intelligence

Scrape Reddit discussions about competitor products to extract feature requests, complaints, and comparison threads. The flair, numComments, and upvoteRatio fields help you prioritize signal over noise.

🚀 How to use

Example 1 — Scrape hot posts from multiple subreddits

{
"subreddits": ["technology", "programming", "webdev"],
"maxPosts": 50,
"sort": "hot"
}

maxPosts applies per subreddit — this returns up to 150 Reddit posts total across the 3 subreddits.

Example 2 — Search across all of Reddit

{
"searchQuery": "best CRM for small business",
"maxPosts": 100,
"sort": "top",
"timeFilter": "month"
}

This searches Reddit globally for posts matching your query, sorted by top scores from the past month.

Example 3 — Get Reddit posts with nested comments

{
"subreddits": ["AskReddit"],
"maxPosts": 25,
"sort": "top",
"timeFilter": "week",
"includeComments": true,
"maxCommentsPerPost": 20
}

This returns 25 top posts from r/AskReddit this week, each with up to 20 nested comments (including replies up to depth 3).

Example 4 — Scrape Reddit from Python

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run_input = {
"subreddits": ["MachineLearning", "LocalLLaMA"],
"maxPosts": 200,
"sort": "top",
"timeFilter": "week",
"includeComments": True,
"maxCommentsPerPost": 25,
}
run = client.actor("makework36/reddit-scraper").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["title"], "·", item["score"], "upvotes")

Example 5 — Scrape Reddit from Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: '<YOUR_APIFY_TOKEN>' });
const run = await client.actor('makework36/reddit-scraper').call({
searchQuery: 'apify reddit scraper',
maxPosts: 50,
sort: 'relevance',
timeFilter: 'all',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Scraped ${items.length} Reddit posts`);

Example 6 — Trigger a Reddit scraping run from cURL

curl -X POST "https://api.apify.com/v2/acts/makework36~reddit-scraper/run-sync-get-dataset-items?token=<YOUR_APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"subreddits": ["news"],
"maxPosts": 10,
"sort": "new"
}'
  1. Request routing — each subreddit or search query becomes a seeded request with its own session cookie and proxy IP.
  2. Public JSON endpoints — the scraper hits Reddit's public .json endpoints (e.g. /r/{sub}/hot.json) which return the same data the Reddit web UI consumes. No Reddit API key required.
  3. Proxy rotation — datacenter IPs are blocked by Reddit; the scraper rotates residential proxies and retries up to 12 times per request.
  4. Session persistence — working proxy + session cookie pairs are reused across subreddits to reduce block rates.
  5. Comment tree reconstruction — comment replies are fetched recursively and linked via parentId so you can rebuild the full thread.
  6. Schema normalization — Reddit's raw JSON is mapped to 29 clean fields with consistent types and ISO 8601 timestamps.

📥 Input

ParameterTypeDefaultDescription
subredditsarray[]List of subreddit names to scrape (no r/ prefix)
searchQuerystringSearch Reddit globally for this term
maxPostsinteger50Max posts per subreddit (1-500)
sortstringhotSort order: hot, new, top, rising, relevance
timeFilterstringdayTime range for top / relevance: hour, day, week, month, year, all
includeCommentsbooleanfalseFetch comments for each Reddit post
maxCommentsPerPostinteger10Comments per post (1-100), includes nested replies up to depth 3

📋 Output example

Each item in the dataset is a single Reddit post as a JSON object. When includeComments: true, each post includes a comments array.

{
"id": "t3_1s6gkmj",
"subreddit": "pics",
"title": "About 100,000 attended the No Kings protest in St. Paul, Minnesota",
"author": "katotooo",
"score": 24915,
"upvoteRatio": 0.97,
"numComments": 235,
"url": "https://www.reddit.com/r/pics/comments/1s6gkmj/about_100000_attended_the_no_kings_protest/",
"selftext": null,
"thumbnail": "https://preview.redd.it/oy94fh2hnvrg1.jpg?width=140&height=93",
"imageUrls": [
"https://preview.redd.it/oy94fh2hnvrg1.jpg?width=3024&format=pjpg",
"https://preview.redd.it/9pmbe5aqnvrg1.jpg?width=4032&format=pjpg"
],
"media": null,
"created": "2026-03-29T00:21:20.000Z",
"edited": false,
"isVideo": false,
"isSelf": false,
"isGallery": true,
"domain": "old.reddit.com",
"linkUrl": "https://www.reddit.com/gallery/1s6gkmj",
"flair": "Politics",
"awards": 0,
"isNSFW": false,
"isSpoiler": false,
"isPinned": false,
"numCrossposts": 2,
"subredditSubscribers": 33336092,
"postType": "gallery",
"scrapedAt": "2026-03-29T08:05:31.904Z",
"comments": [
{
"id": "od1rtqc",
"author": "YJSubs",
"body": "When I see Bernie, I thought, did you just identify him as bald eagle?",
"score": 1,
"created": "2026-03-29T00:21:22.000Z",
"depth": 0,
"isSubmitter": false,
"parentId": "t3_1s6gkmj",
"controversiality": 0,
"replies": 1
},
{
"id": "od1s2fp",
"author": "rclonecopymove",
"body": "Same, he's bald but not very aquiline.",
"score": 1,
"created": "2026-03-29T00:22:45.000Z",
"depth": 1,
"isSubmitter": false,
"parentId": "t1_od1rtqc",
"controversiality": 0,
"replies": 0
}
]
}

Below are three real examples of Reddit data returned by this scraper (anonymized).

Sample 1 — tech discussion post

{
"id": "t3_abc123",
"subreddit": "programming",
"title": "Why I switched from Postgres to SQLite for my side project",
"author": "indie_dev_42",
"score": 3284,
"upvoteRatio": 0.94,
"numComments": 412,
"flair": "Discussion",
"postType": "text",
"subredditSubscribers": 5100000
}

Sample 2 — image gallery post

{
"id": "t3_def456",
"subreddit": "EarthPorn",
"title": "Sunrise over Torres del Paine, Patagonia",
"author": "nature_photog",
"score": 18920,
"upvoteRatio": 0.99,
"numComments": 78,
"postType": "gallery",
"imageUrls": ["https://preview.redd.it/....jpg"]
}

Sample 3 — video post with comments

{
"id": "t3_ghi789",
"subreddit": "nextfuckinglevel",
"title": "Robot parkour demo from Boston Dynamics",
"score": 42018,
"upvoteRatio": 0.96,
"media": {"videoUrl": "https://v.redd.it/....mp4", "duration": 47},
"postType": "video",
"comments": [{"author": "user1", "body": "...", "score": 2100, "depth": 0}]
}

⚡ Performance

ScenarioCostTypical runtime
1,000 Reddit posts, no comments~$0.016~5-10 min
1,000 Reddit posts + 10 comments each~$0.05~12-18 min
3 subreddits × 50 posts~$0.003~40 sec
Full subreddit scrape (500 posts + 50 comments)~$0.08~15-25 min

Pricing follows the Apify Compute Unit model — you pay only for the compute used. No Reddit API subscription, no proxy add-ons, no hidden fees.

Tips to reduce cost:

  • Set includeComments: false if you only need post metadata.
  • Use a tight timeFilter (day or week) instead of all to avoid paginating deep archives.
  • Scrape specific subreddits instead of broad search queries when possible.

❓ FAQ

Does this Reddit scraper need a Reddit API key? No. It extracts Reddit data from public JSON endpoints with a stealth browser, no Reddit API key or OAuth required.

How is this different from the official Reddit API? The Reddit API has strict rate limits (60 req/min), requires OAuth, and caps listings at 10 posts per page. This scraper has no such limits, supports search and comment extraction out of the box, and returns richer data.

What does maxPosts mean? It's per subreddit, not global. 3 subreddits × 50 maxPosts = up to 150 Reddit posts.

How deep do comments go? Up to 3 levels: top-level (depth 0), replies (depth 1), replies-to-replies (depth 2). Each comment has a parentId so you can rebuild the thread.

Can I scrape NSFW subreddits? Yes, but results may include adult content. Use the isNSFW field to filter.

Is this legal? Scraping public Reddit data for research, journalism, and business intelligence is generally allowed under fair-use principles. Consult your legal team for your specific use case and review Reddit's User Agreement.

Can I schedule recurring Reddit scrapes? Yes. Use Apify's Scheduler to run this scraper hourly, daily, or weekly. Pair it with the Apify Webhooks to push new Reddit data to your own database.

📊 Comparison

Choosing the right Reddit scraper depends on what Reddit data you need, how often you need it, and whether you're willing to deal with the Reddit API's OAuth flow and rate limits. Here's an honest comparison:

FeatureThis Reddit ScraperOfficial Reddit APIReddit PRAW libraryGeneric web scrapers
Reddit API key required❌ No✅ Yes (OAuth)✅ Yes (OAuth)❌ No
Rate limitNone60 req/min60 req/minVaries
Comment threads✅ Nested up to depth 3✅ Full tree✅ Full tree❌ Usually not
Search across Reddit✅ Yes✅ Yes✅ Yes❌ Manual
Subreddit scraping✅ Multi-subreddit, parallel✅ One at a time✅ One at a time❌ Manual
Export to JSON / CSV / Excel✅ All three❌ JSON only❌ Python objectsVaries
Maintenance burdenApify handles itYou handle OAuth + retriesYou handle OAuth + retriesYou handle everything
Cost for 10K Reddit posts~$0.50Free but slowFree but slowFree + your dev time
Setup time<1 minute30-60 minutes15 minutesHours or days

When to use this Reddit scraper:

  • You need Reddit data fast, without setting up OAuth.
  • You want structured, normalized JSON without writing parsers.
  • You're feeding Reddit data into an AI / LLM pipeline.
  • You want to scrape multiple subreddits in parallel.
  • You need CSV / Excel export for non-engineers.

When to use the official Reddit API instead:

  • You're building a Reddit bot that posts, votes, or messages.
  • You need real-time WebSocket events.
  • You're fine with 60-requests-per-minute and OAuth setup.

💵 Pricing

The Reddit scraper is already among the cheapest Reddit data sources per post, but you can push it even lower:

  1. Turn off comments when you don't need them. includeComments: false cuts cost by ~3x.
  2. Scope timeFilter tightly. Scraping top/all pulls deep history; top/week is often enough.
  3. Prefer subreddits over searchQuery when possible. Search pages are heavier than subreddit listings.
  4. Schedule hourly instead of real-time. Reddit's new feed doesn't change fast enough to justify <15-min polling for most use cases.
  5. Dedupe across runs. Store Reddit post IDs in Redis / DynamoDB and skip posts you've already scraped.
  6. Cap maxCommentsPerPost smartly. 10-20 comments per post captures most of the signal; 100 is usually overkill.

📝 Changelog

  • 1.0 — Initial public release. 29 post fields, 10 comment fields, search and subreddit modes, nested comment threads, AI-ready JSON output, JSON/CSV/Excel export.