KonbiniAPI

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 request
Example response200OK
{
  "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"
    }
  }
}

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`)

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.