Get user posts from Reddit with KonbiniAPI
Returns a paginated list of posts submitted by a Reddit user across all subreddits.
This API endpoint returns a paginated list of posts submitted by a Reddit user across all subreddits.
Perfect for
- Content audit for specific Reddit users
- Track posting activity and subreddit participation
- Research community contributions by user
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/users/spez/posts", {
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": "Launch day",
"content": "We shipped Reddit support.",
"likeCount": 93210,
"voteCount": 118,
"commentCount": 15,
"published": "2026-02-27T20:37:38.000Z"
}
]
}
}