Get post — Reddit API
Returns a public Reddit post with title, body, author info, engagement counts, and attachments.
GET
/v1/reddit/posts/{postId}1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/reddit/posts/{postId}. 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
- Retrieve full post metadata and engagement counts
- Monitor upvote and comment activity on specific posts
- Archive public Reddit posts for research
const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/abc123", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters1
- postIdrequiredIn · PathType · stringReddit post ID (e.g. `1tlh5aj` or `t3_1tlh5aj`)
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.