get_my_overview
Fetch the authenticated user's recent posts and comments in a single newest-first feed. Supports pagination using an after cursor.
Instructions
Get the authenticated user's own recent activity — posts and comments interleaved, newest first. Read-only but requires user credentials (REDDIT_USERNAME/REDDIT_PASSWORD). Returns up to limit items plus an after cursor for the next page. Use get_my_saved for saved items, or get_user_posts / get_user_comments for another user. Do NOT use this to fetch a specific post's thread — use get_post_comments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Forward pagination cursor: the `after` value returned by a previous call. Omit for the first page. | |
| limit | No | How many activity items to return, 1–100 (default 25). |