POST
/api/v1/user-commentsUsersUser Comments
Retrieve a paginated list of all comments made by a specific Reddit user across all subreddits.
Ready to try it?
Create a free account — 30 requests included, no credit card.
Request Parameters
Send as a JSON body in your POST request.
| Parameter | Type | Required |
|---|---|---|
| username | string | Yes |
| sort | string | No |
| time | string | No |
| limit | number | No |
| after | string | No |
Code Examples
curl
curl -X POST https://subscraper.dev/api/v1/user-comments \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"username": "shittymorph",
"sort": "new",
"limit": 10
}'TypeScript SDK
const comments = await client.getUserComments({
username: "shittymorph",
sort: "new",
limit: 10
});Install the SDK →Sample Response
{
"comments": [
{
"id": "t1_xyz789",
"linkTitle": "What is your favorite paradox?",
"subreddit": "AskReddit",
"body": "In 1998, The Undertaker threw Mankind off Hell In A Cell...",
"score": 15000,
"createdAt": "2019-10-15T14:30:00Z"
}
],
"after": "t1_xyz789"
}Common Use Cases
- Training AI personas on specific user writing styles
- Auditing user behavior or verifying claims
- Finding a user's most highly-upvoted opinions
Credits
Each call to /api/v1/user-comments uses 1 credit. Free tier includes 30 credits. View pricing →
Related Tools & Guides
All developer tools →Related Endpoints
Start using /user-comments now
Free tier — 30 requests, no credit card required.