Reddit User Details
reddit_user_detailsFetch detailed information about a Reddit user
Category: social•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_user_details.
{
"type": "object",
"properties": {
"username": {
"type": "string",
"description": "The Reddit username (without u/ prefix)",
"pattern": "^[A-Za-z0-9_-]{3,20}$",
"examples": [
"Charles_R23",
"spez"
],
"x-ui": {
"label": "Username",
"placeholder": "Reddit username (without u/ prefix)",
"component": "input"
}
}
},
"required": [
"username"
]
}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": {
"user": {
"type": "object",
"properties": {
"username": {
"type": "string",
"description": "Reddit username"
},
"description": {
"type": "string",
"description": "User bio/description"
},
"postKarma": {
"type": "integer",
"description": "Post karma points"
},
"commentKarma": {
"type": "integer",
"description": "Comment karma points"
},
"contributions": {
"type": "integer",
"description": "Number of contributions"
},
"redditAge": {
"type": "string",
"format": "date-time",
"description": "Account creation timestamp"
},
"activeInCount": {
"type": "integer",
"description": "Number of subreddits the user is active in"
}
},
"required": [
"username"
]
}
},
"required": [
"user"
]
}Ready to run Reddit User Details?
Create a project, approve an executor, and push your first reddit_user_details task.