KonbiniAPI

Get posts in batch — Reddit API

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

POST/v1/reddit/posts/batch1 credit per id submitted
Example response200OK
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 2,
    "items": [
      {
        "type": "Note",
        "name": "OpenAI released GPT-5",
        "likeCount": 12000,
        "commentCount": 430,
        "published": "2026-05-01T10:00:00.000Z"
      },
      {
        "type": "Note",
        "name": "Reddit adds new API limits",
        "likeCount": 8500,
        "commentCount": 210,
        "published": "2026-04-15T14:00:00.000Z"
      }
    ]
  }
}

Make the request.

One authenticated POST to /v1/reddit/posts/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-fetch post details for content analysis pipelines
  • Enrich a list of post IDs with scores, comments, and metadata
  • Monitor multiple posts simultaneously without repeated requests
const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/batch", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "entityIds": [
      "1tlh5aj",
      "1t4mguu",
      "1t6ddw2"
    ]
  })
});

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.