Search saved TikTok videos by keyword (2026)
guides

Search saved TikTok videos by keyword (2026)

Search saved TikTok videos by keyword is not a TikTok feature. Five workarounds that work in 2026, plus how transcript search finds the clip.

SavedThat team11 min read

You want to search saved TikTok videos by keyword, and TikTok will not let you. The Favorites tab is a grid of thumbnails with no search field. The search bar at the top of the app queries all of public TikTok, never your own saves.

That is still true in September 2026. A competitor building in the same space checked the mobile and web Favorites screens in July 2026 and found no search field either, and TikTok's help pages document Collections but nothing resembling search inside them. So the gap is real, it is not a setting you have missed, and the fix has to come from outside the app.

Below are the five things that actually work, ordered by effort, and what each one recovers.

Can you search your saved TikToks? No, and here is why

Three design decisions stack up into one dead end.

Captions are burned into the pixels, not stored as text. When a creator adds captions with TikTok's in-app tool, the text is drawn into the rendered video at export time. There is no separate caption track the way YouTube ships SRT and VTT files. Even if TikTok wanted to make captions searchable, for most clips the data is not structured as text.

The auto-generated transcripts stay server-side. TikTok does run speech recognition on uploads for accessibility, but those transcripts are not exposed through any public API, and they are not indexed against your private Favorites. Tool developers have been hitting that wall since 2023.

Favorites was built for re-watching, not retrieval. TikTok treats saves as a small shelf you come back to visually. Someone with 1,200 saves was never the target persona, so no search box was ever shipped for them.

The practical effect: if you save faster than you re-watch, the value of saving decays toward zero. That is the part worth fixing.

TikTok saved videos organization: Collections, and what they fix

TikTok ships exactly one organising primitive. Open Profile, then Favorites, then Collections, and you can create folders like Recipes, Marketing, or Spanish. Move clips in at save time by long-pressing the bookmark icon, or retroactively from the Favorites view.

What it gives you: one enormous scroll becomes several small ones. Inside a 40-item Recipes collection you will find the tofu clip faster than in an unsorted pile.

What it does not give you: any text search. There is no search field inside a collection. You are still reading thumbnails, just fewer of them.

Worth doing anyway. It costs five minutes, it makes every other method on this list cheaper, and it is the only thing here that lives inside TikTok.

Search saved TikTok videos by keyword using screenshot OCR

This is the workaround nobody writes about, and for free it is remarkably good.

When a saved TikTok shows something that matters on screen, a recipe step, a product name, a quote, take a screenshot. Both Apple Photos with Live Text and Google Photos run optical character recognition on every image you store and index the words they find.

Six months later you search "crispy tofu" in Photos, not in TikTok, and every screenshot containing those words comes back. The TikTok never became searchable; the screenshot inherited the searchable text.

Strengths: no cost, no setup, no account. Apple's recognition runs on device. It works retroactively on screenshots you took before you knew this trick, and it survives the video being deleted.

Trade-offs:

Realistic recall: for caption-heavy categories, roughly 60% of saves. For talking heads, much less.

Watch history: the native path back to a TikTok you never saved

Half the people searching for this never bookmarked the clip at all. For them TikTok does have a surface: Settings and privacy, then Activity center, then Watch history, which lists what you watched in reverse order. Scrolling it is tedious, and it holds a recent window rather than your whole life on the app, but it is the only native way back to a video you did not save.

Two things to know. Watch history is a list, not an index, so you are scanning rather than querying. And it answers a different question from Favorites: use it for "I saw it last Tuesday", not for "it is somewhere in my 800 saves".

Do it yourself: TikTok transcript search with yt-dlp and Whisper

The path for the technically curious. Get the audio, transcribe it locally, grep the text.

  1. Request your archive from TikTok's Download Your Data page. The export lists the URLs of everything you have saved.
  2. Pull the audio for each URL with yt-dlp, with a couple of seconds of sleep between calls. yt-dlp can fetch the audio; what it cannot fetch is a transcript, because TikTok does not publish one.
  3. Run OpenAI Whisper over each audio file. On an Apple Silicon Mac the tiny model is fast and fine for English; medium earns its cost on accents, music beds, and non-English clips.
  4. Keep the text files in one folder and grep -r "crispy tofu" ./transcripts/.

Strengths: full recall on spoken content, free in money, offline, multilingual.

Trade-offs:

Hosted TikTok transcript search: find a saved TikTok by what was said

The path most heavy savers end up on. Transcribe at save time, then search the whole library by content.

SavedThat is the one we built. Paste or share a TikTok URL, and the audio goes to Supadata for transcription. The transcript is chunked into short overlapping windows, embedded, and indexed in Postgres with pgvector next to your YouTube and Instagram saves. Then you search by what was said: hybrid semantic and full-text retrieval in parallel, so "pan fry" finds the clip that said "shallow fry", and a Russian query still hits an English transcript. Results deep-link back into TikTok.

It is free while the product is in beta: 100 saves a month, up to two hours per video, 30 hours of library in total, no card. Transcription costs us real money per clip, which is what those limits are for.

We are not the only option, and the honest list matters more than the pitch. Stasht and Quiki both attack the saved-TikTok problem directly and are worth your ten minutes. Dewey is stronger if your pile is mostly bookmarked posts and links rather than video. Glasp is genuinely good at YouTube highlights and does not cover TikTok. A note-taking app with semantic search will work too, if you are willing to paste transcripts in by hand, which rather defeats the point. Our own angle is one library across TikTok, Reels and YouTube, searched by speech.

Side by side: five ways to search saved TikTok videos

MethodSetupEffort to stay currentSearch recallFree
TikTok Collections5 minManual sorting0% (thumbnails only)Yes
Watch history0 minNoneRecent window, no queryYes
Photos OCR (screenshot)0 minScreenshot at save time~60% (visible text)Yes
yt-dlp + Whisper30-90 minRe-run monthly~95% (full transcript)Yes
SavedThat5 minNone, automatic~95% (full transcript)Yes, in beta

Edge cases you will hit

Private and friend-locked clips. If you can no longer open a video publicly, nothing on this list can transcribe it. The bookmark stays in Favorites and is functionally lost.

Removed videos. TikTok removes content for policy strikes, copyright, and account deletions. A transcript already in your library keeps working as text, and your screenshots survive, but playback is gone.

Slang and code-switching. Whisper and hosted engines both degrade on rapid Spanglish or Hinglish and on TikTok-native slang. Semantic search absorbs some of that: the idea gets embedded even when the exact word is mistranscribed.

Clips with no speech. Dance, music, and silent text formats have nothing to transcribe. That is the one in five in our corpus above, and screenshot OCR is the honest answer for them.

The honest recommendation

Under 50 saves, do nothing. Scroll Favorites when you need it.

Between 50 and 500 saves, build the screenshot habit and let Photos do the indexing. It is free and it covers most of what you will want back.

Above 500 saves, or any save rate over a couple a week, the screenshot habit fails silently and transcript search starts paying for itself the first time you recover a quote. Across the past 90 days, people searching their SavedThat library typed a median of five words per query and 62% used four words or more (as of September 2026). That is a sentence, not a keyword, which is why semantic retrieval beats exact matching on a pile of saved TikToks.

Whichever you pick, the working assumption should be that TikTok is not going to ship this. The answer is a parallel index, built by you or by somebody else.

Keep reading

Frequently asked questions (2026)

Can you search saved TikTok videos by keyword?

Not inside TikTok. The Favorites tab has no search field, and the app's main search bar queries public TikTok rather than your saves. To search your own saves by keyword you need an outside index: screenshot OCR in Apple or Google Photos for visible text, or a transcript search tool that transcribes each saved TikTok and indexes what was said.

Does TikTok have a search bar in Favorites?

No. As of September 2026 there is no search field in Favorites on mobile or web, and TikTok's help pages document Collections without mentioning search. Collections are folders, so they narrow the scroll but do not let you query text.

How do I find a TikTok I watched but did not save?

Use Watch history: Settings and privacy, then Activity center, then Watch history. It lists recently watched videos in reverse order. There is no keyword query over it, and it covers a recent window rather than everything you have ever watched, so it works best when you remember roughly when you saw the clip.

Is it legal to download TikTok audio to transcribe it yourself?

TikTok's terms prohibit downloading, copying, and reproducing service content. Transcribing your own saves for a personal search archive is widely done and not actively enforced against individuals, but it is technically a violation and not safe-harboured. We are not lawyers; get legal review before building anything commercial on it.

Why can yt-dlp fetch YouTube transcripts but not TikTok ones?

YouTube publishes captions as a separate text track through its timedtext endpoint, so yt-dlp can download them as a file. TikTok bakes creator captions into the video pixels and keeps its server-side speech recognition behind protections that are not part of any public API. yt-dlp can still fetch the audio, so transcription has to happen afterwards with Whisper locally or a paid API.

How does SavedThat handle TikToks that disappear from the platform?

The transcript stays in your library, so search keeps working and you can still read the quote. What breaks is playback: the deep link points back to tiktok.com, so a removed video or a deleted account leads nowhere. The same applies to Instagram Reels and YouTube. For archiving the video file itself you need a separate tool.

Does transcript search work on TikToks in other languages?

Yes. Our own saved TikToks span 10 languages as of September 2026, and the embeddings are multilingual, so a query in one language can match a transcript in another. Accuracy drops on rapid code-switching and heavy slang, where the semantic layer carries more of the work than exact matching does.