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 submittedExample response200OK
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
What you will probably call next.
The Reddit endpoints around this one — the same object at a different depth, or the same kind of read.
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.