get_user_comments
Retrieve a user's Reddit comments by providing their username, with options to sort by hot, new, or top and control the number of comments returned.
Instructions
Get comments made by a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of comments to retrieve (1-100) | |
sort | No | Sort order for comments | new |
username | Yes | Reddit username (without u/ prefix) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 25,
"description": "Number of comments to retrieve (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"sort": {
"default": "new",
"description": "Sort order for comments",
"enum": [
"hot",
"new",
"top"
],
"type": "string"
},
"username": {
"description": "Reddit username (without u/ prefix)",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}