KonbiniAPI

Get comments in batch — Reddit API

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

POST/v1/reddit/comments/batch1 credit per id submitted
Example response200OK
{
  "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"
      }
    ]
  }
}

Make the request.

One authenticated POST to /v1/reddit/comments/batch. 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

  • 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
const response = await fetch("https://api.konbiniapi.com/v1/reddit/comments/batch", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "entityIds": [
      "okpklb6",
      "ojb40kw"
    ]
  })
});

const data = await response.json();
Parameters1
  • entityIdsrequiredIn · BodyType · string[]1–100 items

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.