KonbiniAPI

Get feed from Reddit with KonbiniAPI

Returns posts from a Reddit global feed: popular, new, or rising.

This API endpoint returns posts from a Reddit global feed: popular, new, or rising.

Perfect for

  • Monitor trending content across all of Reddit
  • Content discovery for news aggregation and curation
  • Track what is rising or popular site-wide

1. Make the request

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

const data = await response.json();

2. Get clean JSON

Response (200 OK)
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 25,
    "orderedItems": [
      {
        "type": "Note",
        "name": "Top post today",
        "likeCount": 50000,
        "commentCount": 1200,
        "published": "2026-05-29T08:00:00.000Z"
      }
    ]
  }
}