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
Search for posts across all of Reddit by keyword.
reddgrow posts search <query> [--limit <n>]Credit cost: 3 credits
| Option | Default | Description |
|---|---|---|
--limit | 25 | Number 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 10comments
Fetch the top-level comments for a specific post.
reddgrow posts comments <subreddit> <id> [--limit <n>]Credit cost: 2 credits
| Argument | Description |
|---|---|
subreddit | Subreddit name (without r/) |
id | Reddit post ID (the alphanumeric string in the post URL) |
| Option | Default | Description |
|---|---|---|
--limit | 25 | Number of comments to return |
Examples
# Post URL: reddit.com/r/programming/comments/abc123/...
reddgrow posts comments programming abc123
reddgrow posts comments programming abc123 --limit 100duplicates
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
| Argument | Description |
|---|---|
subreddit | Subreddit name (without r/) |
id | Reddit post ID |
Example
reddgrow posts duplicates programming abc123batch
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 ghi789Credit Summary
| Command | Credits |
|---|---|
search | 3 |
comments | 2 |
duplicates | 5 |
batch | 5 |