Catalog action Social

Fetch a single Reddit post and its comment tree by permalink. Returns the full post object plus a flattened, depth-ordered list of comments (author, body, score, depth, OP flag). Built-in quality filtering removes deleted/removed comments and (via minScore) downvoted noise, so you get signal not garbage. Ideal for: reading discussion threads, summarizing high-quality comments, sentiment analysis on a post, and extracting community feedback.

At a Glance

FieldValue
Action IDreddit-get-post
CategorySocial
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagssocial, reddit, post, comments, thread, read

Payload Schema

FieldTypeRequiredDescription
permalinkstringYesRelative permalink to the post (e.g. '/r/technology/comments/1ui7kif/title/'). This is the 'permalink' field returned by the post-listing and search actions.
sortstringNoSort order for the comment tree. Default: 'confidence' (Reddit's 'best')
limitnumberNoMaximum number of top-level comments to fetch; their nested replies are always included in the flattened output. Range: 1-100. Default: 50
minScorenumberNoQuality filter: only return comments whose score (net upvotes) is >= this value. Drops downvoted/low-signal noise. Raise it (e.g. 10 or 50) to keep only high-signal comments; set negative to include downvoted ones. Default: 0 (drops net-negative comments).
excludeRemovedbooleanNoQuality filter: drop deleted/removed/empty comments (body '[deleted]', '[removed]', or blank). Default: true.

Result Schema

FieldTypeRequiredDescription
postobjectYes-
commentsarrayYesFlattened (depth-first) comment tree for the post
afterstring | nullNoPagination cursor for additional top-level comments, or null when none remain

Examples

json
{ "type": "reddit-get-post", "payload": { "permalink": "example-permalink" }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.