get_user_comments
Retrieve Reddit comments from a specific user with options to sort by new, hot, top, or controversial and filter by time period.
Instructions
Get comments made by a specific user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of comments to return | |
sort | No | Sort order: new, hot, top, controversial | new |
time_filter | No | Time filter for top/controversial: hour, day, week, month, year, all | all |
username | Yes | The username to get comments for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of comments to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"sort": {
"default": "new",
"description": "Sort order: new, hot, top, controversial",
"enum": [
"new",
"hot",
"top",
"controversial"
],
"type": "string"
},
"time_filter": {
"default": "all",
"description": "Time filter for top/controversial: hour, day, week, month, year, all",
"enum": [
"hour",
"day",
"week",
"month",
"year",
"all"
],
"type": "string"
},
"username": {
"description": "The username to get comments for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}