reddit

Fetch Reddit posts, comments, subreddit info, and user profiles via the public JSON API.

1.3k|126|Updated Jan 17, 2026
One-click install
npx skills add https://github.com/ReScienceLab/opc-skills --skill reddit-resciencelab
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: reddit
Source: https://github.com/ReScienceLab/opc-skills/tree/main/skills/reddit
Command: npx skills add https://github.com/ReScienceLab/opc-skills --skill reddit-resciencelab

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Reddit content is scattered and hard to fetch programmatically. This Skill provides a simple, no-auth way to access posts, comments, subreddit details, and user profiles from Reddit's public JSON API, enabling quick data collection or monitoring.

Core Features & Use Cases

  • Retrieve subreddit posts with various sort modes (hot, new, top) and time filters.
  • Look up subreddit details, user profiles, and specific posts with comments.
  • Support programmatic data collection for research, monitoring, or tooling workflows.

Quick Start

Execute the get_posts, get_subreddit, and get_user scripts as needed to fetch data; start by pulling recent posts from a subreddit of interest.

Frequently Asked Questions about reddit

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Reddit posts and comments without authentication?

You can fetch Reddit posts and comments without authentication by using a client-side script that accesses Reddit's public JSON API. This approach handles pagination and formatting for no-auth workflows.

Can I retrieve subreddit posts sorted by top or new using the public JSON API?

Yes, you can retrieve subreddit posts using the public JSON API with various sort modes such as hot, new, and top, alongside time filters to narrow down the data collection scope.

What is the best way to collect Reddit user profiles and subreddit info programmatically?

The best way to collect Reddit user profiles and subreddit info programmatically is by running dependency-free Python scripts that query the public JSON API and format the returned data for research.

Do I need any external dependencies to pull Reddit data via JSON?

No, you do not need external dependencies to pull Reddit data via JSON. The data collection workflow uses a small, dependency-free Python script set to ensure safe API access and formatting.

Are there limitations to monitoring Reddit data with a no-auth approach?

Limitations of monitoring Reddit data with a no-auth approach include relying solely on the public JSON API, which restricts access to public posts, comments, and profiles without authenticated rate limit allowances.