Get user overview — Reddit API
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.
GET
/v1/reddit/users/{username}/overview1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/reddit/users/{username}/overview. 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
- Get a combined feed of a user's recent posts and comments
- Activity timeline analysis for community research
- Cross-subreddit engagement mapping
const response = await fetch("https://api.konbiniapi.com/v1/reddit/users/spez/overview", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters5
- usernamerequiredIn · PathType · stringReddit username (with or without `u/` prefix)
- countIn · QueryType · integerNumber of activity items to fetch (maximum: 100)1–100default 25
- cursorIn · QueryType · stringPagination cursor
- orderIn · QueryType · stringSort order: new (default), hot, top, or controversialhot | new | top | controversialdefault new
- timeIn · QueryType · stringTime window for top or controversial ordering: hour, day, week, month, year, or all (default)hour | day | week | month | year | all
What you will probably call next.
The Reddit endpoints around this one — the same object at a different depth, or the same kind of read.
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.