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

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 metadatavia MCP tool
Trending subredditsvia MCP tool
Time filter✅ hour/day/week/month/year/all
Pagination beyond 100unlimited (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:

POST https://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