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:

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:

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:

  1. Request your data at reddit.com/settings/data-request
  2. Wait for the email (hours to days)
  3. Download and unzip the file
  4. Open the saved posts file (CSV format) in a spreadsheet
  5. Use the spreadsheet's search function (Ctrl+F) to find what you need

Advantages:

Disadvantages:

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:

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:

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: