KonbiniAPI

Get comment from Reddit with KonbiniAPI

Returns a single Reddit comment by ID, including vote score, author, and reply count.

This API endpoint returns a single Reddit comment by ID, including vote score, author, and reply count.

Perfect for

  • Retrieve a specific comment and its context
  • Track engagement on individual comments
  • Archive comments for moderation or research

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/abc123/comments/comment_1", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "Note",
    "content": "Great post!",
    "voteCount": 42,
    "likeCount": 42,
    "hasReplies": true,
    "published": "2026-02-27T21:00:00.000Z"
  }
}