Use this skill to access Reddit's full data archive via reddapi.dev API. Features semantic search, subreddit discovery, and real-time trend analysis. Perfect for market research, competitive analysis, and niche opportunity discovery.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install reddapi或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install reddapi⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/reddapi/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: reddapi description: Use this skill to access Reddit's full data archive via reddapi.dev API. Features semantic search, subreddit discovery, and real-time trend analysis. Perfect for market research, competitive analysis, and niche opportunity discovery. license: MIT keywords: - reddit - api - search - market-research - niche-discovery - social-media ---
Access Reddit's complete data archive through reddapi.dev's powerful API. This skill provides semantic search, subreddit discovery, and trend analysis capabilities.
Natural language search across millions of Reddit posts and comments.
# Search for user pain points
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
-H "Authorization: Bearer $REDDAPI_API_KEY" \
-d '{"query": "best productivity tools for remote teams", "limit": 100}'
# Find complaints and frustrations
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
-H "Authorization: Bearer $REDDAPI_API_KEY" \
-d '{"query": "frustrations with current TOOL_NAME", "limit": 100}'
Discover trending topics with engagement metrics.
# Get trending topics
curl "https://reddapi.dev/api/v1/trends" \
-H "Authorization: Bearer $REDDAPI_API_KEY"
Response includes:
post_count: Number of poststotal_upvotes: Engagement scoreavg_sentiment: Sentiment analysis (-1 to 1)trending_keywords: Top keywordsgrowth_rate: Trend momentum# List popular subreddits
curl "https://reddapi.dev/api/subreddits?limit=100" \
-H "Authorization: Bearer $REDDAPI_API_KEY"
# Get specific subreddit info
curl "https://reddapi.dev/api/subreddits/programming" \
-H "Authorization: Bearer $REDDAPI_API_KEY"
# Analyze competitor discussions
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
-H "Authorization: Bearer $REDDAPI_API_KEY" \
-d '{"query": "COMPETITOR problems complaints", "limit": 200}'
# Find underserved user needs
curl -X POST "https://reddapi.dev/api/v1/search/semantic" \
-H "Authorization: Bearer $REDDAPI_API_KEY" \
-d '{"query": "I wish there was an app that", "limit": 100}'
# Monitor topic growth
curl "https://reddapi.dev/api/v1/trends" \
-H "Authorization: Bearer $REDDAPI_API_KEY" | python3 -c "
import sys, json
data = json.load(sys.stdin)
for trend in data.get('data', {}).get('trends', []):
print(f\"{trend['topic']}: {trend['growth_rate']}% growth\")
"
{
"success": true,
"results": [
{
"id": "post123",
"title": "User post title",
"selftext": "Post content...",
"subreddit": "r/somesub",
"score": 1234,
"num_comments": 89,
"created_utc": "2024-01-15T10:30:00Z"
}
],
"total": 15000
}
{
"success": true,
"data": {
"trends": [
{
"topic": "AI regulation",
"post_count": 1247,
"total_upvotes": 45632,
"avg_sentiment": 0.42,
"growth_rate": 245.3
}
]
}
}
export REDDAPI_API_KEY="your_api_key"
Get your API key at: https://reddapi.dev
安装 reddapi 后,可以对 AI 说这些话来触发它
Help me get started with reddapi
Explains what reddapi does, walks through the setup, and runs a quick demo based on your current project
Use reddapi to use this skill to access Reddit's full data archive via reddapi
Invokes reddapi with the right parameters and returns the result directly in the conversation
What can I do with reddapi in my data & analytics workflow?
Lists the top use cases for reddapi, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/reddapi/ 目录(个人级,所有项目可用),或 .claude/skills/reddapi/(项目级)。重启 AI 客户端后,用 /reddapi 主动调用,或让 AI 根据上下文自动发现并使用。
reddapi 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
reddapi 可免费安装使用。请查阅仓库了解许可证信息。
Use this skill to access Reddit's full data archive via reddapi.dev API. Features semantic search, subreddit discovery, and real-time trend analysis. Perfect for market research, competitive analysis, and niche opportunity discovery.
reddapi 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using reddapi
Identifies repetitive steps in your workflow and sets up reddapi to handle them automatically