get_trending_subreddits
Retrieve trending subreddits from Reddit with basic info. Specify a limit (1-50) to control the number of results returned, enabling easy tracking of popular communities.
Instructions
Get currently trending subreddits.
Args:
limit: Maximum number of trending subreddits to return (1-50)
Returns:
Dictionary containing list of trending subreddits with their basic info
Raises:
ValueError: If limit is invalid
RuntimeError: For errors during the operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
}
},
"title": "get_trending_subredditsArguments",
"type": "object"
}