Reddit Scraper avatar
Reddit Scraper
Try for free

3 days trial then $40.00/month - No credit card required now

View all Actors
Reddit Scraper

Reddit Scraper

epctex/reddit-scraper
Try for free

3 days trial then $40.00/month - No credit card required now

Tap into the wealth of Reddit's data with our Reddit Scraper. Extract valuable insights from posts, subreddits, comments, and user data effortlessly. Simplify analysis and gain valuable insights from the diverse Reddit community with our user-friendly and efficient tool.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "https://www.reddit.com/",
12        "https://www.reddit.com/hot",
13        "https://www.reddit.com/best",
14        "https://www.reddit.com/user/nationalgeographic",
15        "https://www.reddit.com/user/lukaskrivka/comments",
16        "https://www.reddit.com/r/redditisfun/comments/13wxepd/rif_dev_here_reddits_api_changes_will_likely_kill"
17    ],
18    "search": "apify",
19    "maxItems": 20,
20    "endPage": 1,
21    "extendOutputFunction": ($) => { return {} },
22    "customMapFunction": (object) => { return {...object} },
23    "proxy": {
24        "useApifyProxy": true
25    }
26};
27
28(async () => {
29    // Run the Actor and wait for it to finish
30    const run = await client.actor("epctex/reddit-scraper").call(input);
31
32    // Fetch and print Actor results from the run's dataset (if any)
33    console.log('Results from dataset');
34    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
35    const { items } = await client.dataset(run.defaultDatasetId).listItems();
36    items.forEach((item) => {
37        console.dir(item);
38    });
39})();
40
41// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 36 monthly users
  • 99.2% runs succeeded
  • 0.0 days response time
  • Created in Jun 2023
  • Modified about 24 hours ago