reddit_user_comments
Retrieve a Reddit user's recent comments to see their topics and opinions. Get comment body, score, subreddit, link, and timestamp with pagination support.
Instructions
List a Reddit user's recent comments. Returns comments with body, score, subreddit, parent link, and timestamp plus an after cursor. Use to understand what a redditor talks about or to gather their opinions. Example: name='spez' sort='top'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Reddit username WITHOUT the u/ prefix (e.g. 'spez'). Required (path parameter). | |
| sort | No | Sort order for a user's comments. 'new' = most recent (default), 'hot', 'top' (in the `t` window), 'controversial'. | |
| after | No | Opaque Reddit pagination cursor from the previous response's `after` field (a fullname like `t3_abc123`). Omit on the first call; pass it to fetch the next page. | |
| limit | No | Max items to return (1 to 100). The API clamps out-of-range values; endpoint default applies if omitted. |