Get comment — Reddit API
Returns a public Reddit comment with author info, scores, reply presence, and media when available.
GET
/v1/reddit/posts/{postId}/comments/{commentId}1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/reddit/posts/{postId}/comments/{commentId}. 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 a specific comment and its context
- Track engagement on individual comments
- Archive comments for moderation or research
const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/abc123/comments/comment_1", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters2
- postIdrequiredIn · PathType · stringReddit post ID (e.g. `1tlh5aj` or `t3_1tlh5aj`)
- commentIdrequiredIn · PathType · stringReddit comment ID (e.g. `onflihe` or `t1_onflihe`)
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.