Search and retrieve content from Reddit. Get posts, comments, subreddit info, and user profiles via the public JSON API. Use when user mentions Reddit, a subreddit, or r/ links.
AI & Automation 1,804 stars
164 forks Updated today Apache-2.0
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Reddit Skill
Get posts, comments, subreddit info, and user profiles from Reddit via the public JSON API.
## Prerequisites
**No API key required!** Reddit's public JSON API works without authentication.
**Quick Check**:
```bash
cd <skill_directory>
python3 scripts/get_posts.py python --limit 3
```
## Commands
All commands run from the skill directory.
### Subreddit Posts
```bash
python3 scripts/get_posts.py python --limit 20 # Hot posts (default)
python3 scripts/get_posts.py python --sort new --limit 20
python3 scripts/get_posts.py python --sort top --time week
python3 scripts/get_posts.py python --sort top --time all --limit 10
```
### Search Posts
```bash
python3 scripts/search_posts.py "AI agent" --limit 20
python3 scripts/search_posts.py "MCP server" --subreddit ClaudeAI --limit 10
python3 scripts/search_posts.py "async python" --sort top --time year
```
### Subreddit Info
```bash
python3 scripts/get_subreddit.py python
python3 scripts/get_subreddit.py ClaudeAI
```
### Post & Comments
```bash
python3 scripts/get_post.py abc123 # Get post by ID
python3 scripts/get_post.py abc123 --comments 50 # With more comments
```
### User Profile
```bash
python3 scripts/get_user.py spez
python3 scripts/get_user.py spez --posts 10 # Include recent posts
```
## Sort Options
| Sort | Description | Time Options |
|------|-------------|--------------|
| `hot` | Trending posts (default) | - |
| `new` | Latest posts | - |
| `t...
Details
- Author
- ReScienceLab
- Repository
- ReScienceLab/opc-skills
- Created
- 7 months ago
- Last Updated
- today
- Language
- Python
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Data & Documents Listed
reddit-api
Reddit data toolkit via ScraperSocial — posts, full comment threads, subreddit listings and details, user profiles and keyword search.
0 Updated 1 months ago
nikhonit AI & Automation Listed
reddit-explore
Reddit content discovery skill. Browse subreddits, search posts, view post details, check user profiles. Triggered when user asks to search Reddit, browse subreddits, view posts, or check users.
4 Updated today
beggarticksarthurtatum121 AI & Automation Featured
reddit-insights
Search Reddit posts by meaning via the reddapi.dev index.
433 Updated 1 months ago
lignertys