get_subreddit_info
Retrieve detailed information about a specific subreddit, including its metadata and statistics, by providing the subreddit name. Useful for analyzing Reddit communities and their content.
Instructions
Get information about a subreddit.
Args:
subreddit_name: Name of the subreddit (with or without 'r/' prefix)
Returns:
Dictionary containing subreddit information
Raises:
ValueError: If subreddit_name is invalid or subreddit not found
RuntimeError: For other errors during the operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subreddit_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"subreddit_name": {
"title": "Subreddit Name",
"type": "string"
}
},
"required": [
"subreddit_name"
],
"title": "get_subreddit_infoArguments",
"type": "object"
}