How to Search Reddit Saved Posts (Reddit Won't Help You)
Reddit has no built-in way to search your saved posts. Here are the workarounds — from manual scrolling to tools that add real search to your saves.
The Problem: Reddit Doesn't Let You Search Saves
Reddit's saved posts page at reddit.com/saved is one of the most basic features on the platform. It's a reverse-chronological list of everything you've saved. That's it.
There's no search bar. No filters. No way to sort by subreddit, by type, or by date range. If you saved an article about Python three months ago and you want to find it now, your only option is scrolling through every save you've made since then.
For casual savers (a few posts per month), this is mildly annoying. For power users with hundreds or thousands of saves, it's genuinely unusable.
Method 1: The Scroll-and-Scan (Manual)
The brute-force approach: go to your saved page and scroll through your entire list, looking for the post you remember.
Tips to make this slightly less painful:
- Use Ctrl+F (Cmd+F on Mac) to search the currently loaded page. This only searches the text visible on screen, so you need to scroll down to load more saves, then search again.
- Use old Reddit. old.reddit.com/saved loads content in a simpler format that's faster to scan visually. It also has explicit "next page" links instead of infinite scroll, which can be more reliable.
- Filter by type. On new Reddit, you can filter your saved list by "Posts" or "Comments" — this at least cuts the list in half if you remember whether you saved a post or a comment.
The problem: This doesn't scale. If you have 500+ saves, manually scrolling through them can take 15-20 minutes. And you can only see the most recent 1,000 items — anything older is invisible.
Method 2: Google Your Own Saves (Sort Of)
You can't directly search your saved list via Google, but if you remember details about the post — a keyword from the title, the subreddit, the author — you can use Google to find the original post:
site:reddit.com/r/SUBREDDIT "keyword from the post"
Once you find the post, you can verify it's in your saved list by checking the save button on it (it should appear filled/active if you saved it).
Limitations:
- Only works if you remember enough details to construct a useful search query
- Doesn't search within your saved list — it searches all of Reddit
- Can't help if the post has been deleted
Method 3: Reddit Data Export + Local Search
Reddit's data export includes a file with all your saved posts. You can download it and search locally.
Steps:
- Request your data at reddit.com/settings/data-request
- Wait for the email (hours to days)
- Download and unzip the file
- Open the saved posts file (CSV format) in a spreadsheet
- Use the spreadsheet's search function (Ctrl+F) to find what you need
Advantages:
- Includes saves past the 1,000-cap
- Can search by title, subreddit, and URL
- Free and official
Disadvantages:
- Slow turnaround time for the export
- Doesn't include the actual post content — just metadata and links
- Static snapshot — you'd need to re-export for new saves
- Not user-friendly for non-technical users
Method 4: Browser Extension with Search
This is the most practical long-term solution. Several browser extensions add search functionality to your Reddit saved list.
Readdit Later is built specifically for this use case. It syncs your saved posts and comments into your browser's local storage (IndexedDB), then provides full-text search across everything — titles, body text, comments, subreddit names. The search is semantic, meaning it understands concepts, not just exact keyword matches. Search for "cooking tips" and it finds your saved posts about recipes, meal prep, and kitchen hacks.
What makes extension-based search different:
- Searches post content, not just titles. Reddit's own search (for non-saved posts) mostly matches titles. Extensions that store full post text can search the actual body content.
- Instant results. Since the data is stored locally in your browser, search is effectively instant — no waiting for API calls.
- Works offline. Once synced, your saved post library is available even without an internet connection.
- AI categorization. Some tools automatically tag your saves into categories, making browsing easier even without a specific search query.
Method 5: PRAW Script (For Developers)
If you're comfortable with Python, you can write a script to pull your saved posts via the Reddit API and search them locally.
You'll need a Reddit API application (create one at reddit.com/prefs/apps) and the PRAW library. After authenticating, iterate over reddit.user.me().saved(limit=None), then filter items by checking if your keyword appears in the item's title or body. Print the title and permalink for each match.
Limitations:
- Requires Python and a Reddit API application
- Still subject to the 1,000-item cap
- Needs to re-fetch data for each search session (unless you cache locally)
- Not practical for non-developers
Which Method Should You Use?
| Method | Effort | Searches Content? | Past 1,000 Cap? |
|--------|--------|-------------------|-----------------|
| Manual scroll | High | No (visual only) | No |
| Google site: search | Medium | Title only | N/A |
| Data export + spreadsheet | Medium | Metadata only | Yes |
| Browser extension | Low (after setup) | Yes, full text | Yes (with ongoing sync) |
| PRAW script | High (setup) | Yes | No |
For most people, a browser extension is the right answer. It's a one-time setup that permanently solves the search problem. If you only need to search once and you're comfortable with spreadsheets, the data export approach works too.
The key takeaway: Reddit's saved feature was built as a simple list, not a library. If you treat saves as a personal knowledge base — which many people do — you need to add search on top of what Reddit provides.
Related: