get_hot_reddit_posts
Retrieve trending posts from any subreddit to monitor popular discussions and content in real-time.
Instructions
Get hot posts from a subreddit
Args: subreddit: The name of the subreddit (without r/) limit: Number of posts to return (default: 10, max: 100)
Returns: Human readable string containing hot posts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
subreddit | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"subreddit": {
"title": "Subreddit",
"type": "string"
}
},
"required": [
"subreddit"
],
"type": "object"
}