X profile → Markdown
How to fetch an X profile as Markdown
Turn any X/Twitter profile into clean, structured Markdown with bio, stats, profile picture, and recent content sections. One URL swap replaces the x.com UI with LLM-ready text.
Why not scrape X?
Profile pages are built for browsers, not data.
Copy-pasting from x.com or running a scraper on a profile URL sounds simple, but you usually get layout noise, login walls, truncated bios, and t.co links that do not resolve outside the app.
Scrape x.com → DOM clutter, truncated bios, login walls
tweet.md → clean Markdown with bio, stats, pics, and posts
X profile pages are heavy: nav, sidebars, suggested accounts, trending topics, and a login wall for anyone who is not signed in.
Anonymous visitors often cannot see the full bio, stats, or pinned post without accepting cookies or logging in.
Scraping a profile page gives you the rendered DOM, not structured data — you still have to parse follower count, join date, and bio from mixed HTML.
X may truncate bios with t.co shortlinks that are inaccessible to a scraper without expanding them through the X entity API.
Workflow
Step-by-step
- 01
Copy the X/Twitter profile URL.
Use the profile page permalink, like x.com/thepetermick or x.com/jack. - 02
Replace x.com with tweet.md.
Swap the domain and open the tweet.md page. For example, x.com/jack becomes tweet.md/jack.
URL transformBefore
https://x.com/*t-twmduser/status/*-t-thread-3→After
https://tweet.md/*t-twmduser/status/*-t-thread-3?thread=ancestors - 03
Copy the Markdown output.
You get bio, stats, profile picture, banner, and pinned post by default. Use query params to customize sections. - 04
Use the Markdown wherever you need profile context.
Drop it into a note, agent prompt, research doc, or CRM profile — structured text beats a screenshot or page URL.
Good for
Portable profile context, not just chat prompts
Markdown is easy to search, diff, archive, and reuse. tweet.md gives you bio, stats, images, pinned post, and recent sections in one copy-pasteable block.
Save a profile snapshot in your CRM, prospect list, or research doc without visiting x.com.
Give an LLM agent full profile context (bio, stats, recent posts) in a single Markdown block.
Track profile changes over time by archiving Markdown snapshots — diffable and searchable.
What you get
Structured Markdown from the API
tweet.md reads profiles through the X API and formats the result—not the surrounding page chrome. Customize sections with query params (latest, replies, articles, pinnedpost). Profile fetching requires credits — see docs.
# @*t-twmduser (Lars)
**Bio:** Controlled tweet.md demo profile. Every post here is served from the tweet.md codebase.
**Stats:
- Following: 32
- Followers: 128
- Posts: 19
- Joined: January 2026
**Links:**
- [tweet.md](https://tweet.md)

---
# 📌 Pinned Post
[@*t-twmduser](https://x.com/*t-twmduser/status/*-t-post) · 2026-05-25
> new week!
>
> here’s what I shipped this weekend
Stats:
- Replies: 5
- Reposts: 2
- Quotes: 2
- Likes: 32
- Bookmarks: 2
- Impressions: 3,401Next
Continue with profiles, ChatGPT, or the API docs
Fetch a full profile, paste a complete thread into an AI assistant, or customize thread scope and output through the X post and thread documentation.
Convert an X (Twitter) thread to Markdown
Export a complete X/Twitter thread in order, with post text, source links, and metadata.
full thread text, not page scrape
Convert an X Article to Markdown
Export a long-form X Article with its headings, links, media references, and document structure intact.
long-form structure, links, and media
Save X posts and threads to Obsidian
Turn X/Twitter posts, threads, Articles, and profiles into vault-ready Markdown with YAML frontmatter.
YAML frontmatter, source metadata, vault import
Save X threads as Markdown with Apple Shortcuts
Use Siri, the share sheet, or clipboard input to call tweet.md and save X posts as Markdown on iPhone, iPad, or Mac.
Siri, share sheet, clipboard
Copy an X thread or post to ChatGPT
Paste complete X posts and threads into ChatGPT without missing content or broken links.
reads pasted Markdown, not a raw URL
Copy an X thread or post to Claude
Give Claude the full post or thread text as Markdown instead of a brittle X link.
reads pasted Markdown, not a raw URL
Copy an X thread or post to Gemini
Make X posts and threads readable for Gemini with one tweet.md URL swap.
reads pasted Markdown, not a raw URL