Get subreddit sticky from Reddit with KonbiniAPI
Returns the currently stickied post from a Reddit subreddit, including its comments.
This API endpoint returns the currently stickied post from a Reddit subreddit, including its comments.
Perfect for
- Monitor pinned announcements in communities
- Track community rules and guidelines updates
- Alert systems for sticky post changes
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/subreddits/programming/sticky", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"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"
}
}