KonbiniAPI

Get feed — Reddit API

Returns posts from a top-level Reddit feed such as best, hot, new, top, rising, or controversial.

GET/v1/reddit/feeds/{feed}1 credit per request
Example response200OK
{
  "data": {
    "type": "OrderedCollectionPage",
    "itemCount": 25,
    "orderedItems": [
      {
        "type": "Note",
        "name": "Top post today",
        "likeCount": 50000,
        "commentCount": 1200,
        "published": "2026-05-29T08:00:00.000Z"
      }
    ]
  }
}

Make the request.

One authenticated GET to /v1/reddit/feeds/{feed}. 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

  • Monitor trending content across all of Reddit
  • Content discovery for news aggregation and curation
  • Track what is rising or popular site-wide
const response = await fetch("https://api.konbiniapi.com/v1/reddit/feeds/popular", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();
Parameters4
  • feedrequiredIn · PathType · stringReddit feed kindbest | hot | new | top | rising | controversial
  • countIn · QueryType · integerNumber of posts to fetch (maximum: 100)1–100default 25
  • cursorIn · QueryType · stringPagination cursor
  • timeIn · QueryType · stringTime window for top or controversial feeds: hour, day, week, month, year, or allhour | day | week | month | year | all

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.