| name | social-intelligence |
| description | Search and monitor Reddit using x402-protected APIs.
USE FOR:
- Searching Reddit posts and discussions
- Getting comments from Reddit threads
- Social media monitoring and research
TRIGGERS:
- "reddit", "subreddit", "reddit discussion"
- "what are people saying", "social media", "sentiment"
- "trending", "viral", "popular posts"
Use agentcash.fetch for Reddit endpoints. Reddit $0.02/call.
IMPORTANT: Use exact endpoint paths from the Quick Reference table below.
|
| mcp | ["agentcash"] |
| metadata | {"version":2} |
Social Intelligence with x402 APIs
Access Reddit through x402-protected endpoints.
Setup
See rules/getting-started.md for installation and wallet setup.
Quick Reference
| Task | Endpoint | Price | Description |
|---|
| Search Reddit | https://stableenrich.dev/api/reddit/search | $0.02 | Search Reddit posts |
| Get comments | https://stableenrich.dev/api/reddit/post-comments | $0.02 | Comments on a post |
See rules/rate-limits.md for usage guidance.
Reddit
Search Posts
Search Reddit for posts:
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/search",
method="POST",
body={
"query": "best programming languages 2024"
}
)
Parameters:
query - Search terms (required)
subreddit - Limit to specific subreddit
sort - relevance, hot, new, top
time - hour, day, week, month, year, all
Returns:
- Post title and content
- Author and subreddit
- Upvotes and comment count
- Post URL
Search in Subreddit
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/search",
method="POST",
body={
"query": "typescript vs javascript",
"subreddit": "programming",
"sort": "top",
"time": "year"
}
)
Get Post Comments
Get comments from a Reddit post:
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/post-comments",
method="POST",
body={
"postUrl": "https://reddit.com/r/programming/comments/abc123/..."
}
)
Returns:
- Comment text and author
- Upvotes/downvotes
- Reply threads
- Comment timestamps
Workflows
Standard
Brand Monitoring
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/search",
method="POST",
body={"query": "YourBrand", "sort": "new"}
)
Competitor Research
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/search",
method="POST",
body={"query": "competitor name review", "sort": "top", "time": "year"}
)
Community Sentiment
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/search",
method="POST",
body={"query": "new feature name", "subreddit": "relevant_community", "sort": "hot"}
)
agentcash.fetch(
url="https://stableenrich.dev/api/reddit/post-comments",
method="POST",
body={"postUrl": "https://reddit.com/..."}
)
Response Data
Reddit Post Fields
title - Post title
selftext - Post body (for text posts)
author - Username
subreddit - Subreddit name
score - Upvotes minus downvotes
numComments - Comment count
url - Link to post
createdUtc - Timestamp
Reddit Comment Fields
body - Comment text
author - Username
score - Net upvotes
replies - Nested replies
createdUtc - Timestamp
Cost Estimation
| Task | Calls | Cost |
|---|
| Reddit thread + comments | 2 | $0.04 |
| Full monitoring scan | 3-5 | $0.06-0.10 |