Search and analyze Reddit content using semantic AI search via reddapi.dev HTTP API. Use when you need to: (1) Find user pain points and frustrations for pro...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install reddit-insights或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install reddit-insights⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/reddit-insights/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: reddit-insights description: | Search and analyze Reddit content using semantic AI search via reddapi.dev HTTP API. Use when you need to: (1) Find user pain points and frustrations for product ideas, (2) Discover niche markets or underserved needs, (3) Research what people really think about products/topics, (4) Find content inspiration from real discussions, (5) Analyze sentiment and trends on Reddit, (6) Validate business ideas with real user feedback. Triggers: reddit search, find pain points, market research, user feedback, what do people think about, reddit trends, niche discovery, product validation. ---
Semantic search across millions of Reddit posts. Unlike keyword search, this understands intent and meaning.
Powered by reddapi.dev — AI-powered semantic search and vector similarity across 1000+ subreddits with millions of indexed posts, updated continuously.
Key Advantage:
export REDDAPI_API_KEY="your_api_key"
| Plan | Monthly API Calls | Per Minute | |------|-------------------|------------| | Lite | 500 | 50 | | Starter | 5,000 | 50 | | Pro | 15,000 | 100 | | Enterprise | Unlimited | 1,000 |
Base URL: https://reddapi.dev
Authentication: All requests require header:
Authorization: Bearer YOUR_API_KEY
---
AI-powered semantic search with keyword extraction, vector search, and AI summary generation.
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "What do developers think about Rust vs Go for backend services?", "limit": 20}'
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | Yes | Natural language question | | limit | number | No | Results to return (default: 20, max: 100) |
Response:
{
"success": true,
"data": {
"query": "What do developers think about Rust vs Go for backend services?",
"results": [
{
"id": "1abc234",
"title": "Switched our microservices from Go to Rust - here's what happened",
"content": "After 6 months of running Go in production...",
"subreddit": "rust",
"upvotes": 847,
"comments": 234,
"created": "2026-02-15T10:30:00.000Z",
"relevance": 0.92,
"sentiment": "Discussion",
"url": "https://reddit.com/r/rust/comments/1abc234"
}
],
"total": 20,
"processing_time_ms": 12450,
"ai_summary": "Developers are divided on Rust vs Go for backend services..."
}
}
---
Fast vector similarity search. No LLM processing, returns results in seconds.
curl -X POST "https://reddapi.dev/api/v1/search/vector" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "best productivity apps for ADHD", "limit": 30, "start_date": "2026-01-01", "end_date": "2026-03-18"}'
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | Yes | Search query | | limit | number | No | Results to return (default: 30, max: 30) | | start_date | string | No | Start date filter (YYYY-MM-DD) | | end_date | string | No | End date filter (YYYY-MM-DD) |
Response:
{
"success": true,
"data": {
"query": "best productivity apps for ADHD",
"results": [
{
"id": "2def567",
"title": "Finally found an app that works for my ADHD brain",
"content": "I've tried everything from Todoist to Notion...",
"subreddit": "ADHD",
"upvotes": 1203,
"comments": 456,
"created": "2026-03-01T14:22:00.000Z",
"similarity_score": 0.89,
"url": "https://reddit.com/r/ADHD/comments/2def567"
}
],
"total": 30,
"processing_time_ms": 3200
}
}
---
List available subreddits with metadata, sorted by subscribers.
curl "https://reddapi.dev/api/v1/subreddits?search=programming&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | search | string | No | Filter by name/title/description | | page | number | No | Page number (default: 1) | | limit | number | No | Results per page (default: 50, max: 100) | | sort | string | No | Sort by "subscribers" or "created" (default: subscribers) | | order | string | No | "asc" or "desc" (default: desc) |
---
Get detailed information about a specific subreddit with recent posts.
curl "https://reddapi.dev/api/v1/subreddits/webdev" \
-H "Authorization: Bearer YOUR_API_KEY"
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | name | string | Yes | Subreddit name without r/ prefix |
---
Get trending topics from Reddit based on post engagement.
curl -X POST "https://reddapi.dev/api/v1/trends" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"start_date": "2026-03-11", "end_date": "2026-03-18", "limit": 20}'
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | start_date | string | No | Start date (default: today) | | end_date | string | No | End date (default: today) | | limit | number | No | Topics to return (default: 20, max: 100) |
---
reddapi.dev also provides a Model Context Protocol (MCP) server for direct integration with AI clients.
Endpoint: https://reddapi.dev/api/mcp Protocol: MCP Streamable HTTP Transport
{
"mcpServers": {
"reddit-search-api": {
"transport": {
"type": "http",
"url": "https://reddapi.dev/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
}
MCP tools: reddit_semantic_search, reddit_vector_search, reddit_list_subreddits, reddit_get_subreddit, reddit_get_trends
---
| Use Case | Recommended | Why | |----------|-------------|-----| | Exploratory research | Semantic | LLM extracts keywords, generates summary | | Known-topic monitoring | Vector | Faster, direct matching, no LLM overhead | | Batch processing | Vector | 5x faster per request | | Answering complex questions | Semantic | AI summary synthesizes insights | | Real-time dashboards | Vector | Low latency (~5s vs ~20s) |
| Use Case | Effectiveness | Why | |----------|--------------|-----| | Product comparisons (A vs B) | ⭐⭐⭐⭐⭐ | Reddit loves debates | | Tool/app recommendations | ⭐⭐⭐⭐⭐ | High-intent discussions | | Side hustle/money topics | ⭐⭐⭐⭐⭐ | Engaged communities | | Pain point discovery | ⭐⭐⭐⭐ | Emotional posts rank well | | Health questions | ⭐⭐⭐⭐ | Active health subreddits | | Technical how-to | ⭐⭐⭐ | Better to search specific subreddits | | Abstract market research | ⭐⭐ | Too vague for semantic search | | Non-English queries | ⭐ | Reddit is English-dominant |
...
安装 Reddit Insights 后,可以对 AI 说这些话来触发它
Help me get started with Reddit Insights
Explains what Reddit Insights does, walks through the setup, and runs a quick demo based on your current project
Use Reddit Insights to search and analyze Reddit content using semantic AI search via reddapi
Invokes Reddit Insights with the right parameters and returns the result directly in the conversation
What can I do with Reddit Insights in my developer & devops workflow?
Lists the top use cases for Reddit Insights, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/reddit-insights/ 目录(个人级,所有项目可用),或 .claude/skills/reddit-insights/(项目级)。重启 AI 客户端后,用 /reddit-insights 主动调用,或让 AI 根据上下文自动发现并使用。
Reddit Insights 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Reddit Insights 可免费安装使用。请查阅仓库了解许可证信息。
Search and analyze Reddit content using semantic AI search via reddapi.dev HTTP API. Use when you need to: (1) Find user pain points and frustrations for pro...
Reddit Insights 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Reddit Insights
Identifies repetitive steps in your workflow and sets up Reddit Insights to handle them automatically