Back to templates
Social Mediaextract
4.5
1.5k uses
Reddit Subreddit Posts
Extract posts from a Reddit subreddit including title, score, author, comment count, and submission time
Target URL
https://old.reddit.com/r/technology/Visit SiteSteps
1
Go to subreddit page
navigate
2
Extract posts
extract
| Field | Selector | Transform |
|---|---|---|
| title | .thing .title a.title | text |
| score | .thing .score.unvoted | text |
| author | .thing .author | text |
| commentCount | .thing .comments | text |
| url | .thing .title a.title | url |
| timePosted | .thing time | date |
Output Schema
| Field | Type |
|---|---|
| title | string |
| score | string |
| author | string |
| commentCount | string |
| url | string |
| timePosted | string |
Example Output
| title | score | author | commentCount | url | timePosted |
|---|---|---|---|---|---|
| Apple announces M4 Ultra chip for Mac Pro | 12.4k | tech_insider | 1,847 comments | /r/technology/comments/abc123 | 2026-03-18T10:30:00Z |
| EU passes new right-to-repair legislation | 8.7k | euro_news_bot | 923 comments | /r/technology/comments/def456 | 2026-03-18T08:15:00Z |
| Starlink now available in 80+ countries | 6.2k | space_watcher | 1,204 comments | /r/technology/comments/ghi789 | 2026-03-17T22:00:00Z |
API Endpoint
curl -X POST https://api.scraper.bot/v1/flows \
-H "Authorization: Bearer scr_live_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"templateId": "tmpl-reddit-posts",
"url": "https://old.reddit.com/r/technology/"
}'