get_subreddit_info
Fetch detailed information about any Reddit community, including subscriber count, description, and activity metrics, to analyze subreddit characteristics.
Instructions
Get information about a subreddit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subreddit_name | Yes | Name of the subreddit |
Input Schema (JSON Schema)
{
"properties": {
"subreddit_name": {
"description": "Name of the subreddit",
"type": "string"
}
},
"required": [
"subreddit_name"
],
"type": "object"
}