KonbiniAPI

Get user overview from Reddit with KonbiniAPI

Returns a combined paginated feed of a Reddit user's most recent posts and comments across all subreddits.

This API endpoint returns a combined paginated feed of a Reddit user's most recent posts and comments across all subreddits.

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"
      }
    ]
  }
}