VOOZH about

URL: https://apify.com/opportunity-biz/reddit-scraper

⇱ Reddit Search AI – Keyword, Feed, Comments, MCP & LLM Β· Apify


πŸ‘ Reddit Search AI – Keyword, Feed, Comments, MCP & LLM avatar

Reddit Search AI – Keyword, Feed, Comments, MCP & LLM

Pricing

from $0.05 / 1,000 results

Go to Apify Store

Reddit Search AI – Keyword, Feed, Comments, MCP & LLM

AI-ready Reddit keyword search returning structured JSON for LLMs, AI agents, and MCP servers. Search Reddit globally by keyword, extract posts with title, score, comments, author, timestamp. Sort: hot/new/top/relevance. Auto retry, residential proxy. No API key, no login, no browser. 100% success.

Pricing

from $0.05 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ opportunity-biz

opportunity-biz

Maintained by Community

Actor stats

0

Bookmarked

5

Total users

1

Monthly active users

23 days ago

Last modified

Share

πŸ‘ AI‑Ready
πŸ‘ MCP Server
πŸ‘ Success Rate
πŸ‘ Price

The most complete Reddit MCP server on the Apify Store.
Search globally by keyword, browse subreddit feeds, extract comments, profile users, get subreddit metadata, and discover trending communities β€” all through a native MCP server or batch API.
βœ… 100% success rate Β· βœ… 7 MCP tools Β· βœ… 50Γ— cheaper than competitors Β· βœ… No API key required


πŸ† Why This Actor Is Superior

FeatureReddit Search AI (YOU)harshmaur/reddit-scraperlabrat011/reddit-scrapermakework36/reddit-mcp-server
True MCP Server (7 tools)βœ… YESβŒβŒβœ…
Keyword search (batch)βœ… Up to 100 keywordsβœ…βœ…βœ…
Subreddit feedβœ… hot/new/top/rising/controversialβœ…βœ…βœ…
Comment scrapingβœ… Top-level + threaded via MCPβœ…βœ…βœ…
User profile (posts + comments)βœ… submitted/comments/overviewβœ… URL-basedβœ…βœ…
Subreddit metadataβœ… via MCP toolβœ…βŒβœ…
Trending subredditsβœ… via MCP toolβŒβŒβœ…
Time filterβœ… hour/day/week/month/year/allβœ…βœ…βœ…
Pagination beyond 100βœ… unlimited (after token)βœ… (900 max)βœ… (10K max)βœ… (250 max)
Price per result$0.00001 πŸ†$0.002 ❌$0.0005 ❌$0.02/call ❌
Success rate100% πŸ†94.1%94.3%100%
Residential proxyβœ…βœ…βœ…βœ…
Category MCP Serversβœ…βŒβŒβœ…
Category AIβœ…βŒβŒβœ…

Result: The ONLY Reddit actor that combines a true MCP server, all 4 data modes, 7 MCP tools, 100% success rate, and the cheapest price on the platform.


πŸš€ MCP Server β€” Connect Claude, Cursor, ChatGPT, Codex

This Actor is a native Model Context Protocol (MCP) server with 7 Reddit tools.
AI agents connect via Streamable HTTP β€” no SDK needed.

How to Connect

Claude Desktop

Add to your claude_desktop_config.json:

{
"mcpServers":{
"reddit-search-ai":{
"type":"streamable-http",
"url":"https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/run-sync?token=YOUR_APIFY_TOKEN",
"params":{
"mode":"mcp_server"
}
}
}
}

Cursor / VS Code / Continue

Add to your MCP configuration:

{
"mcpServers":{
"reddit-search-ai":{
"type":"streamable-http",
"url":"https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/run-sync?token=YOUR_APIFY_TOKEN",
"params":{
"mode":"mcp_server"
}
}
}
}

ChatGPT / OpenAI Codex

Use the Apify integration or call the MCP endpoint directly:

POSThttps://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/run-sync
Body:{"mode":"mcp_server"}
Headers: Authorization: Bearer YOUR_APIFY_TOKEN

Available MCP Tools

ToolDescriptionKey Parameters
search_redditSearch Reddit globally by keywordquery, subreddit?, sort?, time_filter?, limit
get_subreddit_postsBrowse subreddit feedsubreddit, sort?, time_filter?, limit
get_post_with_commentsGet a post + full comment treepost_id? + subreddit? OR url
get_user_postsGet posts by a userusername, sort?, time_filter?, limit
get_user_commentsGet comments by a userusername, sort?, time_filter?, limit
get_subreddit_infoSubreddit metadatasubreddit
get_trending_subredditsTrending communitiescategory?, limit

What You Can Do

ModeDescriptionExample
keyword_searchSearch Reddit globally by keyword (single or batch){"keywords": ["AI", "GPT-5"]}
subreddit_feedGet posts from a subreddit (hot/new/top/rising){"subreddit": "technology", "sortType": "hot"}
user_profileGet posts or comments from a user{"usernames": ["spez"], "userContentType": "submitted"}
mcp_serverStart MCP server for AI agent connection{"mode": "mcp_server"}

Input Parameters

FieldTypeRequiredDefaultDescription
modeenumNokeyword_searchkeyword_search, subreddit_feed, user_profile, or mcp_server
keywordsarrayNo[]Batch keywords for keyword_search mode
keywordstringNo""Single keyword fallback
subredditstringNo""Subreddit name for subreddit_feed mode
usernamesarrayNo[]Usernames for user_profile mode
userContentTypeenumNosubmittedsubmitted, comments, or overview
sortTypeenumNonewnew, hot, top, relevance, rising, controversial, comments
timeFilterenumNoallall, hour, day, week, month, year
limitintegerNo20Max results (uses pagination for >100)
include_commentsbooleanNofalseFetch top-level comments per post
max_comments_per_postintegerNo10Max comments per post (max 100)

Output Format

Each result is a clean JSON object:

{
"title":"EU AI Act: What the New Regulations Mean for Startups",
"subreddit":"europe",
"url":"https://reddit.com/r/europe/comments/abc123/",
"text":"The European Union has passed sweeping AI regulations...",
"score":3421,
"num_comments":567,
"author":"tech_analyst",
"created_utc":1710845231.0,
"comments":[
{
"author":"redditor42",
"body":"This is a great step forward...",
"score":245,
"created_utc":1710846000.0
}
]
}

Usage Examples

1. cURL β€” Keyword Search with Comments

curl-s-X POST "https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{"mode":"keyword_search","keywords":["AI regulation","GPT-5"],"limit":5,"include_comments":true}'

2. cURL β€” Subreddit Feed

curl-s-X POST "https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{"mode":"subreddit_feed","subreddit":"technology","sortType":"hot","limit":10,"timeFilter":"week"}'

3. cURL β€” User Profile

curl-s-X POST "https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{"mode":"user_profile","usernames":["spez"],"userContentType":"submitted","limit":5}'

4. Python β€” Agent Pipeline

import requests
API_TOKEN ="YOUR_APIFY_TOKEN"
response = requests.post(
"https://api.apify.com/v2/acts/opportunity-biz~reddit-scraper/runs",
params={"token": API_TOKEN},
json={"mode":"keyword_search","keywords":["AI startups"],"limit":20},
)
run = response.json()
dataset_id = run["data"]["defaultDatasetId"]
results = requests.get(
f"https://api.apify.com/v2/datasets/{dataset_id}/items",
params={"format":"json"},
).json()
print(results)

Error Handling

ScenarioBehaviorRetry Strategy
Missing parametersReturns immediately with logN/A β€” fix input
Reddit rate limit (429)Logs error, retriesExponential backoff: 2s, 4s, 8s (3 attempts)
Network timeoutRetriesExponential backoff
Reddit 403 (blocked)Fresh proxy via rotationResidential proxy handles this
Empty resultsReturns empty datasetN/A β€” valid response
All retries exhaustedStructured error JSON pushed to datasetContains error, error_message, input

Pricing

ComponentPriceComparison
Actor start$0.0001One‑time per run
Per result$0.0000510Γ— cheaper than labrat011 Β· 40Γ— cheaper than harshmaur

Example: 100 posts cost $0.0051. Apify free plan ($5/month) covers ~980 full runs (98,000 results).

Still the cheapest Reddit scraper on the Apify store with the most features.


Why AI Agents Choose This Actor

  • βœ… Native MCP server β€” works with Claude, Cursor, ChatGPT, Codex, Windsurf
  • βœ… 7 MCP tools β€” search, subreddits, comments, users, metadata, trending
  • βœ… 4 batch modes β€” keyword search, subreddit feed, user profile, MCP server
  • βœ… 100% success rate β€” never fails silently
  • βœ… Structured JSON output β€” ready for LLM ingestion
  • βœ… No API key, no login, no browser β€” zero friction
  • βœ… Residential proxy rotation β€” no 403 blocks
  • βœ… Automatic retry with exponential backoff (3 attempts)
  • βœ… $0.00005/result β€” cheapest Reddit scraper on Apify
  • βœ… Pagination beyond 100 β€” unlimited results via after token
  • βœ… Time filtering β€” hour/day/week/month/year/all
  • βœ… 10Γ— cheaper than labrat011 with more features

Limitations

  • Public subreddits only β€” no private/restricted communities
  • text truncated to 500 chars β€” for full text, use the post URL
  • Comments are top-level (1 level deep) in batch mode; full tree via MCP tool
  • score can be negative β€” downvoted posts are included

Changelog

DateVersionChanges
2026-05-270.0.21MCP Server β€” 7 native MCP tools, Streamable HTTP, Claude/Cursor/Codex support
2026-05-270.0.20User profile, time filter, pagination beyond 100
2026-05-270.0.19Subreddit feed, comment scraping, batch search
2026-05-270.0.17Bug fix, retry logic, error handling, SEO metadata
2026-03-190.0Initial release β€” global keyword Reddit search

You might also like

Reddit Scraper

lentic_clockss/reddit-scraper

Scrape Reddit posts from any subreddit β€” search by keyword, browse new/hot/top, get full post text and comments. No login, no API key, no browser. Fast HTTP-only.

Reddit Search Scraper β€” Posts, Comments & Users

logiover/reddit-search-scraper

Scrape Reddit subreddit search with no API key or login. Export posts and comments to CSV/JSON β€” a Reddit API alternative for keyword monitoring.

πŸ‘½ Reddit Scraper β€” Posts, Comments & Search

inexhaustible_glass/reddit-scraper

Scrape Reddit posts, comments, search results & user activity. No login, no API key. Subreddit hot/new/top/rising, keyword search, full comment trees. Auto-paginated. For market research, lead monitoring, brand sentiment & content ideas.

3

Reddit Posts Search Scraper

dami_studio/reddit-search-scraper

Search Reddit by keyword across all of Reddit or inside one subreddit. Sort by relevance/top/new/hot/comments over any time window. Keyless (RSS) by default; add a free Reddit app for scores, comment counts, deep pagination and comments. Reliable residential-proxy rotation.

5

5.0

Reddit Posts, Comments & Subreddit Analytics Scraper

khadinakbar/reddit-posts-comments-scraper

Scrape Reddit posts, comments & subreddit analytics via JSON API. No browser, no login, no API key. Structured JSON for AI, research & monitoring.

413

Reddit Scraper β€” Posts & Comments

signalengine/reddit-scraper

Scrape posts and comments from any subreddit β€” no Reddit API key, no login, no proxy. A fast, free Reddit API alternative for public data, exported to JSON, CSV or Excel.

Reddit Comments Scraper

igview-owner/reddit-comments-scraper

Fast and reliable tool to search, extract, and download Reddit comments by keyword, subreddit, or author. No login required. Export to JSON/CSV.

πŸ‘ User avatar

Sachin Kumar Yadav

13

Reddit Comments Scraper

quakerish_joyride/reddit-comments-scraper

Extract comments from any Reddit post or subreddit. Returns structured JSON with author, score, timestamp, and nested replies. Fast, no API key required.

48

Reddit Scraper (no login Β· no API key)

fruityp/reddit-scraper

Scrape Reddit posts, comments, and keyword-search results from any subreddit β€” full comment trees with author, score, and timestamps. No login, no API key needed. Export to JSON, CSV, or Excel. Works with your own proxy on the free plan.