Provider docs
Subreddit feeds, full-text post search, permalink lookups, and user activity — public Reddit data normalized into the shared post shape.
# Hot posts in a subreddit
curl -X POST $BASE/v1/reddit/fetch \
-H "Authorization: Bearer $REPLYNODES_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation":"subreddit_posts","params":{"subreddit":"LocalLLaMA","category":"hot","limit":10}}'
# Search across Reddit
curl -X POST $BASE/v1/reddit/fetch \
-H "Authorization: Bearer $REPLYNODES_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation":"search_posts","params":{"query":"MCP servers","sort":"top","time_filter":"week"}}'
| Operation | Params | Returns |
|---|---|---|
| search_posts | query, sort?, limit?, time_filter? | Post search across Reddit; sortable by hot/new/top with time windows. |
| subreddit_posts | subreddit, category?, limit?, time_filter? | A subreddit feed: hot / new / top / rising listings. |
| post_by_id | id | One post by numeric ID. |
| post_by_permalink | permalink | One post by its r/<sub>/comments/… path. |
| user_activity | username, limit? | A redditor's recent submissions and comments. |
| user_posts | username, category?, limit?, time_filter? | Submissions only, filtered like subreddit feeds. |
URNs: reddit:post:…, reddit:user:…,
reddit:subreddit:…. Comment trees flatten into the shared shape so
cross-platform analysis needs no special-casing.