Reddit Subreddit Info
reddit_subreddit_infoFetch subreddit metadata (subscribers, description, rules eligibility)
Category: reddit•Timeout: 300s• Retryable
Input schema
POST this shape to /api/v1/tasks as the input field when creating a task in a group of type reddit_subreddit_info.
{
"type": "object",
"properties": {
"subreddit": {
"type": "string",
"description": "Subreddit name without the r/ prefix (e.g. \"programming\")",
"examples": [
"programming",
"SaaS",
"webdev"
]
}
},
"required": [
"subreddit"
]
}Output schema
Executors submit their output matching this shape to /api/v1/tasks/[taskId]/submit. Readers pull it back from task detail endpoints.
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The resolved Reddit /about URL that was fetched"
},
"data": {
"type": "object",
"description": "Reddit t5 Subreddit object (kind + filtered data)",
"properties": {
"kind": {
"type": "string",
"description": "Always \"t5\""
},
"data": {
"type": "object",
"properties": {
"display_name": {
"type": "string"
},
"display_name_prefixed": {
"type": "string"
},
"title": {
"type": "string"
},
"public_description": {
"type": "string"
},
"description": {
"type": "string"
},
"subscribers": {
"type": "integer"
},
"active_user_count": {
"type": "integer"
},
"over18": {
"type": "boolean"
},
"subreddit_type": {
"type": "string"
},
"created_utc": {
"type": "number"
},
"url": {
"type": "string"
},
"icon_img": {
"type": "string"
},
"community_icon": {
"type": "string"
},
"banner_background_image": {
"type": "string"
},
"header_title": {
"type": [
"string",
"null"
]
},
"lang": {
"type": "string"
},
"allow_images": {
"type": "boolean"
},
"allow_videos": {
"type": "boolean"
},
"allow_galleries": {
"type": "boolean"
},
"spoilers_enabled": {
"type": "boolean"
},
"wiki_enabled": {
"type": [
"boolean",
"null"
]
},
"submit_text": {
"type": "string"
},
"submission_type": {
"type": "string"
},
"restrict_posting": {
"type": "boolean"
},
"restrict_commenting": {
"type": "boolean"
}
}
}
}
}
},
"required": [
"url",
"data"
]
}Ready to run Reddit Subreddit Info?
Create a project, approve an executor, and push your first reddit_subreddit_info task.