KonbiniAPI

Get post from Reddit with KonbiniAPI

Returns a Reddit post including title, body, author, vote score, comment count, and media attachments.

This API endpoint returns a Reddit post including title, body, author, vote score, comment count, and media attachments.

Perfect for

  • Retrieve full post metadata and engagement counts
  • Monitor upvote and comment activity on specific posts
  • Archive public Reddit posts for research

1. Make the request

const response = await fetch("https://api.konbiniapi.com/v1/reddit/posts/abc123", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "Note",
    "name": "Launch day",
    "content": "We shipped Reddit support.",
    "likeCount": 93210,
    "voteCount": 118,
    "commentCount": 15,
    "published": "2026-02-27T20:37:38.000Z",
    "attributedTo": {
      "type": "Person",
      "preferredUsername": "spez",
      "name": "Steve Huffman"
    }
  }
}