Reddit User Posts Scraper — Full History avatar

Reddit User Posts Scraper — Full History

Pricing

from $1.40 / 1,000 results

Go to Apify Store
Reddit User Posts Scraper — Full History

Reddit User Posts Scraper — Full History

Collect posts submitted by a Reddit user and sort them by New, Hot, or Top. Paginate automatically and export structured post and engagement records for analysis.

Pricing

from $1.40 / 1,000 results

Rating

0.0

(0)

Developer

ToolzerHub

ToolzerHub

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Collect the posts a Reddit user has submitted, sorted by New, Hot, or Top.

Reddit User Posts Scraper is the ToolzerHub activity tool for one account's submission history. Give it a username and it paginates through their posts across every subreddit they've posted to, up to your result cap.

Username and sort mode set the scope of the run

Provide a username, choose New, Hot, or Top, and set Max Results to bound how much history the run pulls.

Scrape a user's posts

Enter a username, choose a sort mode, and set Max Results. Pagination is handled automatically.

FieldTypeRequiredDescription
usernamestringYesReddit username (without u/), or a profile URL (https://www.reddit.com/user/
sortstringNoSort order for the feed or listing.
maxItemsintegerNoMaximum number of items to save. Set 0 for no limit.

Example post history pull

{
"username": "Turbulent_Nerve3744",
"sort": "NEW",
"maxItems": 50
}

A post history record built for activity analysis

📝 Post identity

FieldTypeDescription
post_idstringReddit post ID.
usernamestringReddit username associated with the item.
titlestringPost or subreddit title when available.
subredditstringSubreddit display name the item belongs to.

📊 Engagement signals

FieldTypeDescription
created_atstringCreation timestamp reported by the source payload.
scorenumberNet score (upvotes minus downvotes) when available.
upvotesnumberUpvote count when reported separately from score.
num_commentsnumberNumber of comments on the post when available.

Post history preview

{
"post_id": "t3_1uw2gep",
"username": "Turbulent_Nerve3744",
"title": "Cats being cats",
"subreddit": "pics",
"score": 1250
}

Cost of a post history pull

This Actor uses Apify pay-per-result pricing. You are charged for successful dataset results according to the Actor pricing shown on the Apify Pricing tab.

Apify's free credits may cover small test runs and up to the free result allowance configured for the Actor.

Use Max Results to bound a run before scaling to larger subreddits, users, or query lists.

Responsible account-activity use

This Actor extracts publicly available Reddit content. It should not be used to collect private user data. Make sure your use case complies with applicable privacy laws, Reddit's terms, and your own legal obligations. If you are unsure, consult a qualified lawyer.

Run this Actor from code

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_API_TOKEN")
run = client.actor("toolzerhub/reddit-user-posts-scraper").call(run_input={
"username": "Turbulent_Nerve3744",
"sort": "NEW",
"maxItems": 50
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Node.js

import { ApifyClient } from "apify-client";
const client = new ApifyClient({ token: "YOUR_APIFY_API_TOKEN" });
const run = await client.actor("toolzerhub/reddit-user-posts-scraper").call({
"username": "Turbulent_Nerve3744",
"sort": "NEW",
"maxItems": 50
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Check the account profile or pull their comment history too

ToolzerHub support

Use the Issues tab on the Actor page for bug reports, missing fields, and feature requests.

Contact: contact@toolzerhub.com