Get user comments from Reddit with KonbiniAPI
Returns a paginated list of comments made by a Reddit user across all subreddits.
This API endpoint returns a paginated list of comments made by a Reddit user across all subreddits.
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"
}
]
}
}