Provider docs

Reddit APILive

Subreddit feeds, full-text post search, permalink lookups, and user activity — public Reddit data normalized into the shared post shape.

Quickstart

# 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"}}'

Operations

OperationParamsReturns
search_postsquery, sort?, limit?, time_filter?Post search across Reddit; sortable by hot/new/top with time windows.
subreddit_postssubreddit, category?, limit?, time_filter?A subreddit feed: hot / new / top / rising listings.
post_by_ididOne post by numeric ID.
post_by_permalinkpermalinkOne post by its r/<sub>/comments/… path.
user_activityusername, limit?A redditor's recent submissions and comments.
user_postsusername, category?, limit?, time_filter?Submissions only, filtered like subreddit feeds.

Data shape

URNs: reddit:post:…, reddit:user:…, reddit:subreddit:…. Comment trees flatten into the shared shape so cross-platform analysis needs no special-casing.