get_subreddit_info
Retrieve detailed information about any Reddit community including description, subscriber count, rules, and activity metrics to understand community purpose and engagement.
Instructions
Get information about a subreddit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subreddit | Yes | Name of the subreddit (without r/ prefix) |
Input Schema (JSON Schema)
{
"properties": {
"subreddit": {
"description": "Name of the subreddit (without r/ prefix)",
"type": "string"
}
},
"required": [
"subreddit"
],
"type": "object"
}