Reddit Post Scraper — Details by URL or ID avatar

Reddit Post Scraper — Details by URL or ID

Pricing

from $2.25 / 1,000 results

Go to Apify Store
Reddit Post Scraper — Details by URL or ID

Reddit Post Scraper — Details by URL or ID

Fetch complete Reddit post records by post ID or permalink URL, or batch multiple comma-separated post IDs in one run. Export structured post, author, content, and engagement data.

Pricing

from $2.25 / 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

Fetch one Reddit post by ID, or batch-fetch several at once.

Reddit Post Scraper is the ToolzerHub detail tool for a post you've already identified elsewhere. Paste a single post ID or permalink for a targeted lookup, or paste a comma-separated ID list to batch multiple posts into one run without repeating the setup.

Post ID or a batch list is the entire input strategy

Use a known post ID (or permalink URL) for a single lookup, or fill Post IDs with a comma-separated list to switch the run into batch mode automatically.

Fetch a single post

Paste a post ID or permalink URL to fetch one full post record.

FieldTypeRequiredDescription
post_idstringNoReddit post ID (e.g. t3_1uw2gep), or a full post permalink URL.

Batch-fetch multiple posts

Paste a comma-separated list of post IDs into Post IDs to fetch several posts in one run.

FieldTypeRequiredDescription
post_idsstringNoComma-separated list of Reddit post IDs to batch-fetch instead of a single post_id. Runs use posts/batch for up to 5 IDs and posts/batch-large above that.

Example post lookup

{
"post_id": "t3_1uw2gep"
}

A detail record built for post analysis

📝 Post identity

FieldTypeDescription
idstringReddit fullname or ID of the item (post, comment, or search result).
post_idstringReddit post ID.
subreddit_idstringReddit subreddit ID.
titlestringPost or subreddit title when available.
authorstringUsername of the post or comment author.
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.

🔍 Detail payload

FieldTypeDescription
post_detailobjectFull post detail payload, present when Add Post Details is enabled.

Post detail preview

{
"post_id": "t3_1uw2gep",
"subreddit_id": "t5_2qh0u",
"title": "Cats being cats",
"author": "Turbulent_Nerve3744",
"subreddit": "pics",
"score": 1250,
"num_comments": 42
}

Cost of a targeted lookup

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 post-data 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-post-scraper").call(run_input={
"post_id": "t3_1uw2gep"
})
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-post-scraper").call({
"post_id": "t3_1uw2gep"
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Browse the subreddit or read the comment thread

ToolzerHub support

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

Contact: contact@toolzerhub.com