X History Tab 2026: Turn Saved Posts Into a Lasting Archive
In May 2026, X turned itself into more of a “save-it-for-later” app. The Bookmarks button in the mobile menu was renamed History, and it now collects your bookmarks, likes, videos, and articles in one private place. Head of product Nikita Bier described it as a better way to keep track of content you want to return to — a personal, quiet reading room inside the platform.
That is genuinely useful for creators, but it is not an archive. A History tab is a view into content that lives on X's servers. The posts can be deleted, edited, or disappear with an account or service change. If you treat a saved list as your permanent library, you are relying on a platform that owes you nothing. This guide explains what the History tab actually does, what it does not do, and how to pair it with an external Markdown archive so the posts you care about last beyond this week.
Quick take: X's History tab (formerly Bookmarks) unifies bookmarks, likes, videos, and articles into one private inbox, auto-capturing content you watched or read. It's perfect for the reading stack. But it is not portable and not durable. Use it as a triage inbox, then move the posts worth keeping into Markdown on your own storage with media and correction tracking.
H2-1: What the History Tab Actually Is
X announced the History tab on May 13, 2026, initially on iOS. The change is described in coverage from TechCrunch, Engadget, Mashable, and Android Headlines: the Bookmarks button in X's left-side menu of the mobile app was renamed History, and the new page separates your saved content into four tabs — Bookmarks, Likes, Videos, and Articles.
Two of the four tabs are intentional. Bookmarks and Likes are things you save or react to deliberately. The other two are automatic. The Videos and Articles tabs are populated based on what you watch or read on X, even if you never clicked a save button. That means you can return to content you previously viewed, whether or not you explicitly saved it. The History section stays private to you, per Bier's announcement.
| Tab | How it fills | Intentional? | Best use |
|---|---|---|---|
| Bookmarks | Posts you save | Yes | Curated reading list |
| Likes | Posts you react to | Yes | Social signal log |
| Videos | Auto-captured from watch history | No | Return to video content |
| Articles | Auto-captured from reading history | No | Personal reading queue |
The move consolidates features that were previously scattered — bookmarks lived in the main menu, and likes were buried as a tab on your user profile. It also nudges creators toward X's long-form article format, which the company has been positioning as a way to share updates beyond the standard 280-character post. As you read articles while scrolling, X progressively builds a personalized news reader for you inside the app.
H2-2: Why a Saved List Is Not an Archive
Here is the gap. A bookmark is a pointer to content hosted by the platform. It is not a copy of the content. When a post is deleted, set to private, or edited, your History entry now points at something that is gone or changed. When an account is suspended or the service changes its data model, the whole private view can reset.
Creators who treat X as their only record of their own writing and media are taking on a real risk. One policy change, one account issue, or one purge can wipe a collection built up over years. The History tab is a convenience — a reading queue with good intentions. An archive is a durable, portable copy under your control.
Rule of thumb: use History as the triage inbox — the fast place to park things you might want later. Move anything you genuinely want to keep into an external Markdown archive the same week, not the same year.
H2-3: The External Markdown Archive Workflow
The workflow has three stages: triage inside X, convert to Markdown, and store with media and provenance. Here is the shape of it.
Stage 1 — Triage with the History tab
Use the four History tabs as a first-pass filter. Bookmarks are your deliberate shortlist. The Articles tab is where X's long-form content accumulates automatically, so it is the natural place to spot the pieces worth turning into permanent notes. Keep this fast — do not organize heavily inside X. The value of a triage inbox is that it is quick, not that it is permanent.
Stage 2 — Convert to Markdown
For each post or thread you decide to keep, pull it out as clean Markdown. That gives you plain text that is searchable, greppable, versionable, and future-proof. A conversion step looks like this:
# Pseudo-pipeline: History shortlist to Markdown
for url in history_shortlist:
md = requests.get(
f"https://threadgrab.com/api/grab",
params={"url": url, "format": "markdown"},
).text
write_to_library(url_to_filename(url), md)
Each saved post becomes its own Markdown file. Because the output is plain text, you can search it with grep, index it with an LLM, or drop it straight into a notes app — no proprietary format locks you in.
Stage 3 — Store with media and provenance
Markdown alone covers the text. Media is a separate problem. If a post had images, video, or screenshots, those files should land on your disk too, so your archive is not full of broken references. Provenance — the original URL, author, timestamp, and capture time — should ride alongside so you always know where a note came from.
archive/
posts/2026-08-08-x-article-markdown.md
media/2026-08-08-x-article-markdown/
image-01.jpg
video-01.mp4
manifest.json
That folder structure is portable anywhere — a git repo, a cloud drive, a VPS. It does not depend on X, on ThreadGrab, or on any single vendor. That independence is the whole point of an archive.
H2-4: What to Keep vs What to Let Go
Not every History entry deserves a permanent copy. A cheap triage filter keeps your archive meaningful instead of bloated:
- Keep: your own long-form articles, threads with original research or how-tos, posts you cited or plan to cite, and anything with media you may need later.
- Keep: public statements you might need as evidence, with version history so you can prove what a post said when.
- Let go: memes, link-only shares, trending jokes, and anything you clearly will not revisit. Letting History hold those is exactly what the tab is for.
The filter is simple: if it would actually hurt to lose it, archive it. If it is just a passing ping in the timeline, leave it in History and move on.
H2-5: From Reading Queue to Personal Library
X's own framing is telling. Coverage notes that the update comes as web publishers have seen a decline in referral traffic from platforms like Facebook and Google, driven by shifting algorithms and AI-powered experiences that reduce clicks to external sites. X sees that shift as an opportunity to attract publishers and creators to write directly on its platform, where distribution and discovery are built in.
The History tab fits that strategy: the more your reading life happens inside X, the more natural it is to publish there too. That is fine — publication belongs on X where your audience is. But your library should not live only there. The strongest setup acknowledges both: publish on X for reach, archive off-platform for ownership.
| Capability | X History tab | ThreadGrab (external archive) |
|---|---|---|
| Unified saved-content inbox | Yes | No (export then read) |
| Auto-captures viewed/read content | Yes | Only what you explicitly grab |
| Portable / exportable | No | Yes (Markdown + media) |
| Media downloaded to your disk | No (links only) | Yes |
| Track post corrections over time | No | Yes (re-fetch + diff) |
| Survives deletion / account change | No | Yes |
| Searchable plain-text corpus | No | Yes |
| Export to Notion / GitHub / S3 | No | Yes |
H2-6: Building the Habit
The workflow only works if it is a habit, so make it cheap. Pick one recurring trigger — a weekly review, or an “archive it” moment the second you bookmark something clearly worth keeping. Batch converts once a week rather than reacting post-by-post.
A lightweight routine looks like this:
- On Monday, open the History tab's Articles and Bookmarks tabs.
- Skim the auto-captured Articles list; flag the ones you actually want.
- Convert the flagged set to Markdown in one batch — minutes, not hours.
- Drop the Markdown into your archive folder and let the media sync.
- Delete nothing in X; History stays your inbox, the archive is your shelf.
Ten minutes a week is enough to keep a meaningful library without turning the chore into a second job.
H2-7: The Bottom Line
The X History tab is a thoughtful improvement — a private, unified save-it-for-later view that makes the platform feel more like a reader. Use it, and use it enthusiastically. Just do not confuse a reading queue with a library.
The creators who will thrive are the ones who treat the platform as a distribution channel and their own storage as the source of truth. Triage in History, publish on X, and archive what matters into Markdown on hardware you control. That division of labor keeps your reach on the platform and your legacy off it.
Keep the posts that matter. ThreadGrab converts X threads and posts to Markdown, downloads the media to your own disk, and tracks corrections with re-fetch and diff. Use History to save — ThreadGrab to keep.
Try ThreadGrabFAQ
The X History tab is a private hub that collects your bookmarks, likes, videos, and articles in one place. It replaced the Bookmarks button in the left-side menu of the mobile app and separates saved content into four tabs: Bookmarks, Likes, Videos, and Articles. Bookmarks and Likes are intentional saves; the Videos and Articles tabs are populated automatically based on what you watch or read on X.
Yes. According to the announcement from X head of product Nikita Bier, the History section remains private to you. It is a personal save-it-for-later view that consolidates content that was previously scattered — bookmarks lived in the main menu and likes were buried as a tab on your profile.
Yes. The Articles tab is populated based on what you read on X, and the Videos tab based on what you watch, even if you never clicked a button to save them. You can return to content you previously viewed without an explicit save, which is why X described the feature as turning the app into more of a personalized news reader.
Because X's History tab is a private reading view inside the platform, not a durable archive. Content can be deleted, edited, or lost to an account or service change, and a saved list on X is not portable. Converting the posts you genuinely want to keep into Markdown files on your own storage gives you a searchable, media-backed, correction-tracked copy that survives anything that happens to the platform.
The History tab is a lightweight save-it-for-later inbox built into X — great for quickly returning to things you mean to read or watch. ThreadGrab is an external archive: it converts X threads and posts to Markdown, downloads the media to your own disk, tracks post corrections with re-fetch and diff, and exports to Notion, GitHub, or S3. Use History for the reading stack; use ThreadGrab for the posts worth keeping permanently.