KonbiniAPI

Get comments in batch from Reddit with KonbiniAPI

Returns up to 100 Reddit comments by ID in a single request. Costs 1 credit per ID submitted.

This API endpoint returns up to 100 Reddit comments by ID in a single request. Costs 1 credit per ID submitted.

Perfect for

  • Bulk-retrieve comment data for sentiment analysis
  • Enrich a list of comment IDs with scores and content in one call
  • Build comment thread datasets without sequential requests

1. Make the request

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

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 2,
    "items": [
      {
        "type": "Note",
        "content": "Agreed, this changes everything.",
        "voteCount": 342,
        "published": "2026-05-01T11:30:00.000Z"
      },
      {
        "type": "Note",
        "content": "Not sure I agree, but interesting take.",
        "voteCount": 87,
        "published": "2026-05-01T12:00:00.000Z"
      }
    ]
  }
}