Access Reddit data and content
Reddit is a vast social news aggregation, content rating, and discussion platform where registered users submit content such as text posts, images, and links, which are then voted up or down by other members. Known as "the front page of the internet," Reddit is organized into thousands of communities called subreddits, each focused on a specific topic.
With Reddit, you can:
- Access diverse content: Browse thousands of specialized communities covering virtually every topic
- Stay informed: Get real-time updates on trending news, discussions, and viral content
- Engage with communities: Participate in discussions with like-minded individuals
- Discover trending topics: See what's popular across different interest groups
- Gather insights: Collect opinions, feedback, and perspectives from diverse user groups
- Monitor public sentiment: Track reactions and discussions around specific topics or brands
- Research niche topics: Access specialized knowledge in dedicated communities
In Sim Studio, the Reddit integration enables your agents to programmatically access and analyze content from Reddit's vast ecosystem. This allows for powerful automation scenarios such as trend monitoring, content aggregation, and sentiment analysis. Your agents can retrieve popular posts from specific subreddits, extract valuable information, and incorporate these insights into their workflows. This integration bridges the gap between social media monitoring and your AI workflows, enabling more informed decision-making based on public discussions and trending topics. By connecting Sim Studio with Reddit, you can create agents that stay on top of relevant conversations, identify emerging trends, gather diverse perspectives, and deliver timely insights - all without requiring manual browsing of countless Reddit threads.
Usage Instructions
Access Reddit data to retrieve posts and comments from any subreddit. Get post titles, content, authors, scores, comments and more.
Tools
reddit_hot_posts
Fetch the most popular (hot) posts from a specified subreddit.
Input
Parameter | Type | Required | Description |
---|---|---|---|
subreddit | string | Yes | The name of the subreddit to fetch posts from (without the r/ prefix) |
limit | number | No | Maximum number of posts to return (default: 10, max: 100) |
Output
Parameter | Type |
---|---|
subreddit | string |
posts | string |
reddit_get_posts
Fetch posts from a subreddit with different sorting options
Input
Parameter | Type | Required | Description |
---|---|---|---|
subreddit | string | Yes | The name of the subreddit to fetch posts from (without the r/ prefix) |
sort | string | No | Sort method for posts: |
limit | number | No | Maximum number of posts to return (default: 10, max: 100) |
time | string | No | Time filter for |
Output
Parameter | Type |
---|---|
subreddit | string |
posts | string |
reddit_get_comments
Fetch comments from a specific Reddit post
Input
Parameter | Type | Required | Description |
---|---|---|---|
postId | string | Yes | The ID of the Reddit post to fetch comments from |
subreddit | string | Yes | The subreddit where the post is located (without the r/ prefix) |
sort | string | No | Sort method for comments: |
limit | number | No | Maximum number of comments to return (default: 50, max: 100) |
Output
Parameter | Type |
---|---|
post | string |
title | string |
author | string |
selftext | string |
created_utc | string |
score | string |
permalink | string |
Block Configuration
Input
Parameter | Type | Required | Description |
---|---|---|---|
action | string | Yes | Action |
Outputs
Output | Type | Description |
---|---|---|
response | object | Output from response |
↳ subreddit | string | subreddit of the response |
↳ posts | json | posts of the response |
↳ post | json | post of the response |
↳ comments | json | comments of the response |
Notes
- Category:
tools
- Type:
reddit