Ultimate Reddit Profile Scraper avatar
Ultimate Reddit Profile Scraper
Try for free

1 day trial then $25.00/month - No credit card required now

View all Actors
Ultimate Reddit Profile Scraper

Ultimate Reddit Profile Scraper

potatopeeler/reddit-scraper
Try for free

1 day trial then $25.00/month - No credit card required now

Seamlessly download full Reddit user accounts, capturing posts, images, activity, and historical data, including URLs and media comments. Export detailed insights to CSV, JSON, XML, EXCEL formats, or effortlessly import them into your email for comprehensive analysis and easy access.

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

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    "user": "https://www.reddit.com/user/Mark_Ruffalo",
11    "scrapeType": "posts",
12    "limit": "50",
13    "sort": "new",
14    "time": "day",
15    "proxy": {
16        "useApifyProxy": true,
17        "apifyProxyGroups": [
18            "RESIDENTIAL"
19        ]
20    },
21    "maxRetries": 3,
22    "timeout": 10
23};
24
25(async () => {
26    // Run the Actor and wait for it to finish
27    const run = await client.actor("potatopeeler/reddit-scraper").call(input);
28
29    // Fetch and print Actor results from the run's dataset (if any)
30    console.log('Results from dataset');
31    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
37
38// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 23 monthly users
  • 2 stars
  • 100.0% runs succeeded
  • 4.2 days response time
  • Created in Jan 2024
  • Modified 28 days ago