ReddGrowReddGrow Docs

Posts

Search Reddit posts, fetch comments, find duplicates, and batch retrieve multiple posts by ID

The posts command group provides cross-subreddit post search, batch retrieval, comment fetching, and duplicate detection.

Commands

Search for posts across all of Reddit by keyword.

reddgrow posts search <query> [--limit <n>]

Credit cost: 3 credits

OptionDefaultDescription
--limit25Number of results to return

Examples

reddgrow posts search "typescript performance tips"
reddgrow posts search "rust vs go" --limit 50
reddgrow posts search "show hn" --limit 10

comments

Fetch the top-level comments for a specific post.

reddgrow posts comments <subreddit> <id> [--limit <n>]

Credit cost: 2 credits

ArgumentDescription
subredditSubreddit name (without r/)
idReddit post ID (the alphanumeric string in the post URL)
OptionDefaultDescription
--limit25Number of comments to return

Examples

# Post URL: reddit.com/r/programming/comments/abc123/...
reddgrow posts comments programming abc123
reddgrow posts comments programming abc123 --limit 100

duplicates

Find other Reddit posts that share the same URL as a given post. Useful for cross-posting analysis and identifying viral content.

reddgrow posts duplicates <subreddit> <id>

Credit cost: 5 credits

ArgumentDescription
subredditSubreddit name (without r/)
idReddit post ID

Example

reddgrow posts duplicates programming abc123

batch

Fetch multiple posts by their Reddit post IDs in a single request.

reddgrow posts batch <id> [id...]

Credit cost: 5 credits

Pass any number of post IDs as space-separated arguments. IDs are the alphanumeric strings found in Reddit post URLs (e.g., abc123 from reddit.com/r/.../.../abc123/...).

Examples

# Single post
reddgrow posts batch abc123

# Multiple posts in one call
reddgrow posts batch abc123 def456 ghi789

Credit Summary

CommandCredits
search3
comments2
duplicates5
batch5