VOOZH about

URL: https://apify.com/truefetch/reddit-post-search

โ‡ฑ Reddit Cross-Subreddit Search API โ€” Up to 1M Posts ยท Apify


Pricing

from $5.20 / 1,000 posts

Go to Apify Store

Cross-subreddit keyword search โ€” post title, body, score, subreddit, author, and 40+ fields with optional comment threads. Up to 1,000,000 posts. $5.80 per 1,000.

Pricing

from $5.20 / 1,000 posts

Rating

4.1

(2)

Developer

๐Ÿ‘ TrueFetch

TrueFetch

Maintained by Community

Actor stats

3

Bookmarked

19

Total users

3

Monthly active users

9 hours ago

Last modified

Share

Affiliate disclosure: Apify links on this page may include referral parameters. If you sign up through one of these links, TrueFetch may earn a commission from Apify at no extra cost to you. Pricing, features, and Actor access are unaffected.

๐Ÿ‘ Reddit Post Search
๐Ÿ‘ Reddit Keyword Scraper
๐Ÿ‘ $0.0058 per Post
๐Ÿ‘ Cross-Reddit Keyword Search
๐Ÿ‘ Telegram Support
๐Ÿ‘ Telegram Group

Reddit Post Search โ€” Reddit Keyword Scraper: Cross-Reddit Keyword Search

Enter any keyword and scrape Reddit posts from all subreddits โ€” sorted by relevance, hot, top, new, or comments โ€” with optional comment threads, 40+ fields per post, and up to 1 million results. No login required.

TL;DR (40-word answer): Reddit Post Search is a no-login Apify Actor that searches Reddit by keyword and returns structured posts and optional comments at $0.0058 per post + $0.00015 per comment, with time filters and sort options for market research. Last verified 2026-05-02.

What it is NOT: Reddit Post Search is not a single-subreddit scraper, not a user profile tool, and not a real-time stream โ€” it searches all of Reddit by keyword and returns matching posts with optional comment threads.

Reddit Post Search is an Apify Actor that accepts a search keyword and returns structured Reddit posts and comments matching that keyword across all subreddits. Maintained by TrueFetch on the Apify Store.


๐Ÿท๏ธ Why choose Reddit Post Search

Reddit Post Search is best for market researchers, brand monitors, and NLP engineers who need cross-Reddit keyword search results with full post metadata and optional comment threads.

  • ๐Ÿ“Š 40+ fields per post โ€” title, body, author, score, upvotes, flair, media URL, timestamps, flags, and nested comment threads.
  • ๐Ÿ” Flexible search options โ€” sort by relevance, hot, top, new, or comments; filter by time period (hour, day, week, month, year, all).
  • โšก Pay-per-result pricing โ€” $0.0058 per post + $0.00015 per comment. Free Apify plan includes $5 monthly credits.

๐Ÿš€ Quick Start โ€” run in 3 steps

Run in Apify Console

  1. Open the Actor โ€” go to Reddit Post Search on Apify and click Try for free.
  2. Configure inputs โ€” enter a keyword, choose sort_by and time_filter, set max_posts, and optionally set max_comments.
  3. Click Start โ€” the Actor returns structured posts in the default dataset; download as JSON, CSV, or Excel.

Run via Apify API

curl-X POST "https://api.apify.com/v2/acts/TrueFetch~reddit-post-search/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"keyword": "python tutorial",
"sort_by": "relevance",
"time_filter": "month",
"max_posts": 100,
"max_comments": 5
}'

Run via MCP (for AI agents)

Reddit Post Search is callable from Claude, ChatGPT, Cursor, and any MCP-compatible client through the Apify MCP Server. Reference the Actor as TrueFetch/reddit-post-search and pass the same JSON input as above.


โš™๏ธ Input parameters

ParameterTypeRequiredDefaultDescriptionExample
keywordstringโœ…โ€”Search query to find posts across all of Reddit.python tutorial
sort_bystringโœ…โ€”Result sort order: relevance, hot, top, new, or comments.relevance
time_filterstringโœ…โ€”Time period filter: all, hour, day, week, month, or year.month
max_postsintegerโœ…โ€”Number of posts to fetch. Range: 1โ€“1,000,000.100
max_commentsintegerโŒ0Number of comments to fetch per post. Set to 0 to skip. Maximum 1,000,000.5
{
"keyword":"python tutorial",
"sort_by":"relevance",
"time_filter":"month",
"max_posts":100,
"max_comments":5
}

๐Ÿ“ฆ Output dataset

Each run writes structured post records (plus optional comment records) to the default Apify dataset, exportable as JSON, JSONL, CSV, Excel, XML, RSS, or via the dataset API.

FieldTypeAlways present?DescriptionExample
processorstringโœ…Apify Actor URL that produced this record.https://apify.com/TrueFetch/reddit-post-search
processed_atstringโœ…ISO 8601 UTC timestamp.2026-04-24T09:30:00+00:00
subredditstringoptionalSubreddit where the post was found.learnpython
idstringoptionalReddit post ID.1abc2de
authorstringoptionalPost author username.u/some_user
createdstringoptionalPost creation timestamp (UTC).2026-04-10T08:00:00+00:00
titlestringoptionalPost title.Best Python tutorials for beginners
bodystringoptionalPost body text (for text posts).I've been learning Python and found...
scoreintegeroptionalPost score (upvotes minus downvotes).1234
upvotesintegeroptionalRaw upvote count.1400
downvotesintegeroptionalRaw downvote count.166
flair_textstringoptionalPost flair label.Beginner
media_urlstringoptionalExternal link or image URL.https://example.com/tutorial
lockedbooleanoptionalWhether the post is locked for comments.false
over_18booleanoptionalNSFW flag.false
duplicatesarrayoptionalURLs of crossposted versions.["https://..."]
commentsarrayoptionalArray of comment objects (author, body, score, depth).[{"author": "..."}]

Sample output

{
"processor":"https://apify.com/TrueFetch/reddit-post-search",
"processed_at":"2026-04-24T09:30:00+00:00",
"subreddit":"learnpython",
"title":"Best Python tutorials for beginners",
"author":"u/some_user",
"score":1234,
"comments":[]
}

๐Ÿ’ก Use cases

For market researchers monitoring brand mentions across Reddit

  • Problem: a brand team needs to track all Reddit discussions mentioning their product name across all subreddits.
  • How Reddit Post Search solves it: run with the brand name as keyword, sort_by: "new", time_filter: "week" on a schedule.
  • Outcome: automated brand monitoring at $0.0058 per post.

For NLP researchers building Reddit training datasets

  • Problem: an ML team needs thousands of Reddit posts on a topic for fine-tuning a language model.
  • How Reddit Post Search solves it: run with a broad keyword and max_posts: 10000 to collect bulk post titles and bodies.
  • Outcome: large-scale Reddit NLP dataset at ~$58 per 10,000 posts.

For AI agents answering questions about Reddit discussions on a topic

  • Problem: LLM agents asked "what are people on Reddit saying about X?" cannot answer from stale training data.
  • How Reddit Post Search solves it: call the Actor over the Apify MCP Server to surface live Reddit search results.
  • Outcome: grounded Reddit data in production AI assistants.

๐Ÿ’ฐ Pricing, limits, and performance

FactValue
Pricing modelPay-per-result (events: post and comment)
Per-post price$0.0058 per post = $5.80 per 1,000
Per-comment price$0.00015 per comment = $0.15 per 1,000
Free-tier monthly allowance$5 Apify credits โ‰ˆ ~862 free posts or ~33,333 free comments / month
Max posts per run1,000,000
Max comments per run1,000,000
Output fields per post40+
Login / cookies requiredNo โ€” works without a Reddit account
Export formatsJSON, JSONL, CSV, Excel, XML, RSS, dataset API

โš–๏ธ Compared with alternatives

CapabilityReddit Post SearchReddit API (PRAW)Custom scraper
Cross-subreddit keyword search with 40+ fields per postโœ…code requiredyou build & maintain
Sort by relevance, hot, top, new, commentsโœ…โœ…you implement
Pay-per-result pricing$0.0058 / postfree but rate-limitedinfra + dev cost
Export to CSV / JSONโœ…โŒyou implement
Setup time to first result< 60 secondshoursdaysโ€“weeks

Verdict. Reddit Post Search is ideal for researchers and developers who need bulk Reddit keyword search results without managing Reddit API credentials or rate limits.


โš ๏ธ Common mistakes to avoid

  1. Setting max_posts too high on first run. Start with 100โ€“500 posts to validate your keyword before scaling to millions.
  2. Forgetting time_filter. Without time scoping, the Actor may return old posts. Use time_filter: "week" for recent discussions.
  3. Setting large max_comments unintentionally. With max_comments: 100 and max_posts: 1000, you could be charged for 100,000 comment records.

๐Ÿ› ๏ธ Troubleshooting

ProblemLikely causeFix
Missing 'keyword' fieldInput is missing the keyword key.Add "keyword": "your search term" to your input JSON.
Missing 'sort_by' fieldInput missing sort_by.Set sort_by to one of: relevance, hot, top, new, comments.
Empty dataset returnedKeyword has no matching posts in the selected time period.Try a broader keyword or change time_filter to all.
Charge limit reachedAccount-level monthly spend limit hit.Raise the run / monthly limit in your Apify plan settings.

โ“ FAQ

What data does Reddit Post Search return?

Reddit Post Search returns 40+ structured fields per post including title, body, author, subreddit, score, upvotes, flair, media URL, timestamps, and optional comment threads.

How much does Reddit Post Search cost?

The Actor charges $0.0058 per post and $0.00015 per comment. The Apify Free plan includes $5 of monthly platform credits.

Does Reddit Post Search require a login?

No. Reddit Post Search uses the Reddit API without requiring a user login or cookies.

Can I search only within a specific subreddit?

Use Reddit Community Post to scrape posts from a single subreddit. Reddit Post Search searches across all of Reddit.


๐Ÿ”Œ Integrations

Reddit Post Search plugs straight into the Apify ecosystem:

  • Schedules โ€” monitor keyword trends on a recurring schedule (docs).
  • Webhooks โ€” POST results to your endpoint on ACTOR.RUN.SUCCEEDED (docs).
  • Apify API โ€” run-sync-get-dataset-items for blocking calls, runs for async (docs).
  • MCP Server โ€” call the Actor from Claude, ChatGPT, or Cursor agents (docs).
  • No-code โ€” Make, Zapier, n8n, Pipedream, Google Sheets, Airtable.

๐Ÿงฑ Sister Actors from TrueFetch

Jobs

Shopping & Deals

Vehicles

Real Estate

Local Business & Food

Classifieds

Social Media

Videos & Text

Content & Articles


๐Ÿ“ž Support, changelog, last updated

Support

Maintained by TrueFetch on the Apify Store.

Cost of doing nothing: manually searching Reddit by keyword and collecting post metadata is a slow, repetitive task. Reddit Post Search delivers structured results at $0.0058 per post via API. โ†’ Try it free with $5 of Apify credits.

Changelog

  • 2026-05-02 โ€” README rewritten for SEO + GEO; documented all output fields, pricing, troubleshooting matrix, and FAQ.
  • 2026-04 โ€” Increased max_posts limit to 1,000,000.
  • 2026-02 โ€” Initial release: Reddit cross-subreddit keyword post scraper.

{
"@context":"https://schema.org",
"@graph":[
{
"@type":"SoftwareApplication",
"@id":"https://apify.com/TrueFetch/reddit-post-search#software",
"name":"Reddit Post Search",
"description":"Apify Actor that searches Reddit by keyword and returns structured posts and optional comments at $0.0058 per post with sort and time filter options.",
"applicationCategory":"BusinessApplication",
"operatingSystem":"Web, Cloud",
"url":"https://apify.com/TrueFetch/reddit-post-search",
"offers":{
"@type":"Offer",
"price":"0.0058",
"priceCurrency":"USD",
"availability":"https://schema.org/InStock"
},
"author":{"@id":"https://apify.com/TrueFetch#author-TrueFetch"},
"publisher":{"@id":"https://apify.com/TrueFetch#publisher"}
},
{
"@type":"Organization",
"@id":"https://apify.com/TrueFetch#publisher",
"name":"TrueFetch",
"url":"https://apify.com/TrueFetch",
"sameAs":["https://t.me/TrueFetch","https://t.me/AiAgentApi"]
},
{
"@type":"FAQPage",
"mainEntity":[
{
"@type":"Question",
"name":"What data does Reddit Post Search return?",
"acceptedAnswer":{
"@type":"Answer",
"text":"Reddit Post Search returns 40+ structured fields per post including title, body, author, subreddit, score, upvotes, flair, media URL, timestamps, and optional comment threads."
}
},
{
"@type":"Question",
"name":"How much does Reddit Post Search cost?",
"acceptedAnswer":{
"@type":"Answer",
"text":"Reddit Post Search charges $0.0058 per post and $0.00015 per comment. The Apify Free plan includes $5 of monthly platform credits."
}
},
{
"@type":"Question",
"name":"Can I search only within a specific subreddit?",
"acceptedAnswer":{
"@type":"Answer",
"text":"Use Reddit Community Post (apify.com/TrueFetch/reddit-community-post) to scrape posts from a single subreddit. Reddit Post Search searches across all of Reddit."
}
}
]
},
{
"@type":"BreadcrumbList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"name":"Apify",
"item":"https://apify.com"
},
{
"@type":"ListItem",
"position":2,
"name":"Social Media",
"item":"https://apify.com/store?category=SOCIAL_MEDIA"
},
{
"@type":"ListItem",
"position":3,
"name":"Reddit Post Search",
"item":"https://apify.com/TrueFetch/reddit-post-search"
}
]
}
]
}

Last Updated: May 2, 2026 Schema version: 1.1 Maintained by: TrueFetch ยท ๐Ÿ’ฌ Telegram Group ยท ๐Ÿ“ง Support

You might also like

Reddit Subreddit Posts Scraper | Fast Bulk Feed Export

clearpath/reddit-subreddit-posts-scraper

Scrape 1,000+ posts per subreddit in seconds. Hot, new, top, rising, controversial feeds with time filters. Optional comment fetching (up to 1,000 per post). Bulk subreddit input via names, URLs, or CSV.

Reddit Keyword Search

morph_coder/reddit-keyword-search

Search Reddit posts by keywords (one search per keyword). Returns post title, body, votes, subreddit, and URL. Optional keyword relevance filter.

6

5.0

Reddit Scraper ๐Ÿ†• $1.5 per 1k

klondikeking/reddit-scraper-1-5-per-1k

Extract posts, comments, and subreddit data from Reddit. Supports search, sorting, comment threads, and pagination. Fast, reliable, and pay-per-result.

๐Ÿ‘ User avatar

Pierrick McD0nald

6

SubReddit Post Scraper

agentx/subreddit-post-scraper

Bulk-extract up to 10,000 posts from any subreddit, sorted by new, top, hot, rising, or controversial, with each post returning title, body, score, upvote ratio, flair, author, and permalink. Optionally include up to 10,000 comments per post for full-thread sentiment and discussion mining.

Reddit Search Scraper - Keyword & Brand Monitoring ($1.5/1k)

harshmaur/reddit-search-scraper

Search Reddit by keyword and scrape every matching post, comment, and subreddit. Monitor brand mentions, track topics, and find leads with sort and time-range filters โ€” all of Reddit or one community. No API key, no login. Export CSV/Excel/JSON. From $1.50 per 1,000 results.

4

5.0

Reddit Scraper - $0.75/1k

santamaria-automations/reddit-scraper

Scrape Reddit posts and comments from any subreddit, search query, or user profile. Returns title, author, full post text, external link URL, comment bodies, subreddit, and timestamps. No login required. Pay-per-result: only $0.75 per 1,000 items.

Reddit Community Post

truefetch/reddit-community-post

Pull subreddit posts with full body text, score, author, flair, and 40+ fields โ€” includes nested comment threads. Sort by hot, new, top, or rising. $0.0069 per post.

Reddit Subreddit Posts Actor

pintostudio/reddit-subreddit-posts-actor

The Reddit Subreddit Posts actor is an Apify tool that scrapes posts from any Reddit subreddit. It retrieves post metadata including title, author, score, number of comments, and more, making it easy to analyze subreddit content and trends.

16

Subreddit Scraper - Whole Subreddits, No 1k Post Cap ($1.5/1k)

harshmaur/reddit-subreddit-scraper

Scrape entire subreddits โ€” thousands of posts per community, far beyond Reddit's ~1,000-post listing cap, by combining every sort and time window. Optional comments per post. Archive communities or build ML datasets. No API key. CSV/Excel/JSON. From $1.50 per 1,000 posts.

2

5.0