KonbiniAPI

Get comment replies — Reddit API

Returns direct replies to a Reddit comment using cursor-based pagination.

GET/v1/reddit/posts/{postId}/comments/{commentId}/replies1 credit per request
Example response200OK
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 5,
    "orderedItems": [
      {
        "type": "Note",
        "content": "Agreed!",
        "voteCount": 12,
        "published": "2026-02-28T08:00:00.000Z"
      }
    ]
  }
}

Make the request.

One authenticated GET to /v1/reddit/posts/{postId}/comments/{commentId}/replies. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.

Built for

  • Extract full discussion threads from Reddit posts
  • Analyse nested conversations for sentiment research
  • Build threaded comment views in your application
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();
Parameters4
  • postIdrequiredIn · PathType · stringReddit post ID (e.g. `1tlh5aj` or `t3_1tlh5aj`)
  • commentIdrequiredIn · PathType · stringReddit comment ID (e.g. `onflihe` or `t1_onflihe`)
  • countIn · QueryType · integerNumber of replies to fetch (maximum: 100)1–100default 20
  • cursorIn · QueryType · stringPagination cursor

Try it on your own data.

Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.