KonbiniAPI

Get subreddit sticky posts — Reddit API

Returns sticky posts for a subreddit across all available slots.

GET/v1/reddit/subreddits/{subreddit}/sticky1 credit per request
Example response200OK
{
  "data": {
    "type": "Note",
    "name": "Welcome to r/programming",
    "isPinned": true,
    "content": "Read the rules before posting.",
    "likeCount": 1200,
    "commentCount": 45,
    "published": "2026-01-01T00:00:00.000Z"
  }
}

Make the request.

One authenticated GET to /v1/reddit/subreddits/{subreddit}/sticky. 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 pinned announcements in communities
  • Track community rules and guidelines updates
  • Alert systems for sticky post changes
const response = await fetch("https://api.konbiniapi.com/v1/reddit/subreddits/programming/sticky", {
  headers: { "Authorization": "Bearer YOUR_API_KEY" }
});

const data = await response.json();
Parameters1
  • subredditrequiredIn · PathType · stringSubreddit name (with or without `r/` prefix)

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.