Reddit Scraper โ€” Posts, Comments, Users & Communities avatar

Reddit Scraper โ€” Posts, Comments, Users & Communities

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Reddit Scraper โ€” Posts, Comments, Users & Communities

Reddit Scraper โ€” Posts, Comments, Users & Communities

Scrape Reddit at scale without login: posts, comment threads, user profiles, and communities โ€” from URLs, keyword search, or whole subreddits. Sentiment, media downloads, and monitoring included.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Kelopr

Kelopr

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Capture the conversations behind a market: posts, comment trees, users, communities, sentiment, and media.

Scrape Reddit at scale without login: posts, comment threads, user profiles, and communities โ€” from URLs, keyword search, or whole subreddits. Sentiment, media downloads, and monitoring included.

All examples below use fictional DEMO-* identifiers, reserved .test domains, and masked contact details. They do not represent real people, listings, products, or companies.

๐Ÿš€ What this Actor does

  • Flexible collection: Direct URLs, Keyword search, Subreddit collection, Incremental collection.
  • Structured output: clean JSON records organized into overview, posts, comments, users, communities views.
  • Production-ready: concurrency, retries, proxy support, limits, and source-aware diagnostics are exposed through the Actor input.
  • Easy automation: run from the Apify Console, API, schedules, webhooks, Make, Zapier, or any HTTP client.

๐ŸŽ›๏ธ Modes and workflows

Mode or workflowWhat it does
Direct URLsResolve exact posts, comments, users, or communities.
Keyword searchSearch posts, comments, communities, and users with sort and time filters.
Subreddit collectionCollect posts and optional comment trees from selected communities.
Incremental collectionUse onlyNewerThan plus deduplication for repeatable feeds.

๐Ÿ’ก Common use cases

  • Community and audience research
  • Brand, issue, and sentiment monitoring
  • Training, research, and content datasets

๐Ÿ“ฅ Input schema

Configure the Actor in the Input tab or send the same JSON through the API. Fields not needed for your workflow can be omitted.

FieldTypeDescriptionDefault
startUrlsarrayDirect Reddit URLs โ€” posts, subreddits, user profiles, or search pages. Each is auto-detected.โ€”
searchesarrayKeywords or phrases to search across Reddit (use quotes for exact phrases).โ€”
subredditsarraySubreddits to scrape in full โ€” accepts a name, r/name, or full URL.โ€”
searchWithinSubredditstringLimit keyword searches to one subreddit (name or r/name). Leave empty to search all of Reddit.โ€”
searchPostsbooleanInclude posts in search results.true
searchCommentsbooleanInclude comments in search results.false
searchCommunitiesbooleanInclude subreddits in search results.false
searchUsersbooleanInclude user profiles in search results.false
sortstringOrdering for listings and search. Allowed: relevance, hot, top, new, rising, comments.new
timestringTime window for Top / Controversial / search results. Allowed: all, hour, day, week, month, year.all
includeNSFWbooleanInclude adult / over-18 content.false
scrapeCommentsbooleanFor every post found, also collect its comment thread (deep, with collapsed replies expanded).false
maxCommentsPerPostintegerCap on comments collected per post.10
commentSortstringOrdering used when collecting a post's comment thread. Allowed: top, new, controversial, old, qa, confidence.top
skipUserPostsbooleanWhen scraping a user profile, skip their post/comment history (keep profile only).false
skipCommunityInfobooleanWhen scraping a subreddit, skip the community info/rules record.false
postedAfterstringKeep only posts created on/after this date (YYYY-MM-DD or ISO-8601).โ€”
postedBeforestringKeep only posts created on/before this date.โ€”
commentedAfterstringKeep only comments created on/after this date.โ€”
commentedBeforestringKeep only comments created on/before this date.โ€”
onlyWithFlairbooleanKeep only posts that have a link flair.false
strictKeywordMatchbooleanFor searches, keep only results whose title/body contain every keyword.false
maxItemsintegerGlobal cap across all sources and data types. 0 = unlimited.100
maxPostsPerSourceintegerPosts pulled per subreddit / search / user (Reddit lists cap near 1000).25
sentimentbooleanAdd a sentiment score and label to posts and comments.false
downloadMediabooleanSave post images/videos to storage and add permanent links (Reddit media URLs can rotate).false
downloadAvatarsbooleanSave user avatars to storage and add a permanent link.false
dedupebooleanSave each post/comment/user/community only once per run.true
onlyNewerThanintegerSkip items created at/before this Unix timestamp โ€” useful for scheduled monitoring.0
proxyConfigurationobjectDefaults to fast, low-cost datacenter proxies. The scraper automatically escalates to residential IPs only if Reddit rate-limits the run.{"useApifyProxy": true}
maxConcurrencyintegerSources processed at once.8
maxRetriesintegerRetries for a failed Reddit request.5
requestTimeoutSecsintegerMaximum time for one request.30

โ–ถ๏ธ Example input

{
"searches": [
"customer onboarding"
],
"searchPosts": true,
"scrapeComments": true,
"maxItems": 50,
"maxCommentsPerPost": 20,
"sentiment": true
}

๐Ÿ“ฆ Output schema

Each successful item is written to the default dataset. Select a dataset view in the Apify Console or export the full dataset as JSON, CSV, Excel, XML, or RSS.

overview โ€” Overview

A compact table for fast scanning and export.

Fields: dataType, title, name, username, author, subreddit, score, numComments, membersCount, totalKarma, url, createdAt

posts โ€” Posts

Post-level content and engagement records.

Fields: title, author, subreddit, score, upvoteRatio, numComments, flair, postType, over18, sentimentLabel, url, contentUrl, createdAt

comments โ€” Comments

Comment-level conversation records.

Fields: body, author, subreddit, score, depth, isSubmitter, sentimentLabel, postTitle, url, createdAt

users โ€” Users

Public user-profile records.

Fields: userIcon, username, totalKarma, linkKarma, commentKarma, verified, followersCount, description, url, createdAt

communities โ€” Communities

Community metadata and audience size.

Fields: communityIcon, name, title, membersCount, onlineUsersCount, over18, subredditType, description, url, createdAt

๐Ÿ“ค Example output

{
"title": "Demo discussion about onboarding",
"author": "demo_user",
"subreddit": "demo_community",
"score": 142,
"upvoteRatio": 0.94,
"numComments": 37,
"postType": "text",
"over18": false,
"sentimentLabel": "positive",
"url": "https://www.reddit.com/r/demo_community/comments/DEMO-POST-01/"
}

Missing source values are returned as null, empty arrays, or documented availability/status fields; the Actor does not invent unavailable source data.

๐Ÿ”Œ API example

Replace the placeholder with an Apify token and send the same input used in the Console:

curl -X POST "https://api.apify.com/v2/acts/trakk~reddit-scraper/runs?token=<YOUR_APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"searches": ["customer onboarding"], "searchPosts": true, "scrapeComments": true, "maxItems": 50, "maxCommentsPerPost": 20, "sentiment": true}'

For synchronous integrations, use the run-sync-get-dataset-items API endpoint. For larger jobs, start an asynchronous run and consume its default dataset when the run succeeds.

๐Ÿงฉ Automation and exports

  • Schedule recurring runs from the Apify Console.
  • Trigger downstream systems with webhooks when a run succeeds or fails.
  • Reuse named monitoring keys or stores where the selected workflow supports change tracking.
  • Export dataset views to JSON, CSV, Excel, XML, or RSS, or access items through the Apify API.

โ“ FAQ

Do I need a login or browser session?

Use only the inputs shown in the Actor schema. If authentication or cookies are supported, the relevant encrypted field is explicitly available in the Input tab; otherwise no account is required.

Why can some fields be empty?

Source pages vary by region, content type, privacy settings, and availability. Optional enrichment also depends on the selected mode. Empty values are preserved honestly instead of being guessed.

How should I run this at scale?

Start with a small representative input, inspect the dataset and cost, then raise item limits and concurrency gradually. Use Apify Proxy when the schema exposes it, and use schedules plus monitoring keys for recurring collection.

Is the example data real?

No. Every example in this README is intentionally fictional and uses demo identifiers, reserved domains, or masked contact values.