Get user comments from Reddit with KonbiniAPI
Returns public comments made by a Reddit user. Supports hot, new, top, and controversial ordering, with optional time windows for top and controversial.
This API endpoint returns public comments made by a Reddit user. Supports hot, new, top, and controversial ordering, with optional time windows for top and controversial.
Perfect for
- Analyse a user's commenting patterns and tone
- Research community engagement across subreddits
- Sentiment analysis on user-generated content
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/users/spez/comments", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"data": {
"type": "OrderedCollectionPage",
"itemCount": 25,
"orderedItems": [
{
"type": "Note",
"content": "First!",
"voteCount": 9,
"likeCount": 9,
"published": "2026-02-27T21:00:00.000Z"
}
]
}
}