Get post comments from Reddit with KonbiniAPI
Returns a paginated list of top-level comments on a Reddit post.
This API endpoint returns a paginated list of top-level comments on a Reddit post.
Perfect for
- Sentiment analysis on community reactions to a post
- Extract discussion threads for NLP training data
- Monitor comment activity on brand-relevant posts
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/abc123/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": "Great post!",
"voteCount": 42,
"likeCount": 42,
"hasReplies": true,
"published": "2026-02-27T21:00:00.000Z"
}
]
}
}