KonbiniAPI

Get comment replies from Reddit with KonbiniAPI

Returns replies to a specific Reddit comment, paginated.

This API endpoint returns replies to a specific Reddit comment, paginated.

Perfect for

  • Extract full discussion threads from Reddit posts
  • Analyse nested conversations for sentiment research
  • Build threaded comment views in your application

1. Make the request

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

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 5,
    "orderedItems": [
      {
        "type": "Note",
        "content": "Agreed!",
        "voteCount": 12,
        "published": "2026-02-28T08:00:00.000Z"
      }
    ]
  }
}