Get posts in batch from Reddit with KonbiniAPI
Returns up to 100 Reddit posts by ID in a single request. Costs 1 credit per ID submitted.
This API endpoint returns up to 100 Reddit posts by ID in a single request. Costs 1 credit per ID submitted.
Perfect 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
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/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",
"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"
}
]
}
}