reddit_list_user_comments
Retrieve the comments a Reddit account has written, including parent IDs to trace each comment back to its thread. Supports sorting, time filtering, and pagination up to 100 items per request.
Instructions
List the comments an account has written. Same ~1000-item ceiling as reddit_list_user_posts. Each comment carries its parent id, so you can follow one back to its thread with reddit_get_post.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Listing sort. `top` and `controversial` also read `time`. | hot |
| time | No | Time window, used only by the `top` and `controversial` sorts. Ignored otherwise. | day |
| after | No | Pagination cursor: pass the `after` value from the previous response to get the next page. Reddit paginates by fullname, not by offset, so there is no page number. | |
| limit | No | How many items to return (1-100). Defaults to 25; Reddit's hard cap is 100. | |
| username | Yes | Reddit username without the `u/` prefix, e.g. "spez". |