Get user overview from Reddit with KonbiniAPI
Returns a mixed Reddit user activity feed including posts and comments. Supports hot, new, top, and controversial ordering, with optional time windows for…
This API endpoint returns a mixed Reddit user activity feed including posts and comments. Supports hot, new, top, and controversial ordering, with optional time windows for top and controversial.
Perfect for
- Get a combined feed of a user's recent posts and comments
- Activity timeline analysis for community research
- Cross-subreddit engagement mapping
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/reddit/users/spez/overview", {
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",
"content": "First!",
"voteCount": 9,
"published": "2026-02-27T21:00:00.000Z"
}
]
}
}