Reddit Scraper Lite avatar
Reddit Scraper Lite
Try for free

Pay $4.00 for 1,000 results

View all Actors
Reddit Scraper Lite

Reddit Scraper Lite

trudax/reddit-scraper-lite
Try for free

Pay $4.00 for 1,000 results

Pay Per Result, unlimited Reddit web scraper to crawl posts, comments, communities, and users without login. Limit web scraping by number of posts or items and extract all data in a dataset in multiple formats.

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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    {
9      "url": "https://www.reddit.com/r/pasta/comments/vwi6jx/pasta_peperoni_and_ricotta_cheese_how_to_make/"
10    }
11  ],
12  "sort": "new",
13  "maxItems": 10,
14  "maxPostCount": 10,
15  "maxComments": 10,
16  "maxCommunitiesCount": 2,
17  "maxUserCount": 2,
18  "scrollTimeout": 40,
19  "proxy": {
20    "useApifyProxy": true,
21    "apifyProxyGroups": [
22      "RESIDENTIAL"
23    ]
24  }
25}
26EOF
27
28# Run the Actor using an HTTP API
29# See the full API reference at https://docs.apify.com/api/v2
30curl "https://api.apify.com/v2/acts/trudax~reddit-scraper-lite/runs?token=$API_TOKEN" \
31  -X POST \
32  -d @input.json \
33  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 157 monthly users
  • 23 stars
  • 100.0% runs succeeded
  • 1.4 days response time
  • Created in Jun 2020
  • Modified 16 days ago