How to Convert Your Claude Export to Word, PDF, or Markdown
Anthropic gives you the option to export your Claude conversation history. But like every other AI platform, what you actually get is a JSON file, not the neatly formatted conversations you see in the Claude interface. How to Export Your Claude Data 1. Open Claude and go to Settings 2. Navigate to Privacy 3. Click Expo…
Anthropic gives you the option to export your Claude conversation history. But like every other AI platform, what you actually get is a JSON file, not the neatly formatted conversations you see in the Claude interface.
How to Export Your Claude Data
Open Claude and go to Settings
Navigate to Privacy
Click Export Data
Anthropic will prepare a download (this can take a few minutes)
Download the file when it's ready
What's Inside the Export
Your Claude export contains a JSON file with an array of conversations. Each conversation includes:
uuid: a unique identifier for the conversation
name: the conversation title
created_at / updated_at: ISO timestamps
chat_messages: an array of message objects
Each message has:
sender: either \"human"\ or \"assistant"\
text: the message content (may include markdown formatting)
created_at: when the message was sent
attachments: any files you uploaded during the conversation
Claude vs. ChatGPT: Different JSON, Same Problem
The good news is that Claude's JSON structure is simpler than ChatGPT's. Messages are stored in a flat array rather than a tree graph, so the order is straightforward. There's no parent-child node traversal needed.
The bad news is that it's still raw JSON:
\\\`json
{
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Project Architecture Review",
"chat_messages": [
{
"sender": "human",
"text": "Can you review this system design?",
"created_at": "2026-01-15T14:30:00.000Z"
},
{
"sender": "assistant",
"text": "I'd be happy to review your system design. Here are my observations:\\n\\n## Strengths\\n\\n1. Clean separation of concerns...",
"created_at": "2026-01-15T14:30:15.000Z"
}
]
}
\\\`
You can read individual messages if you squint, but trying to browse through hundreds of conversations in this format is impractical. And the markdown formatting embedded in the text (like \##\ headings and \bold\) doesn't render; it just shows as raw characters.
Why You Can't Just Open It in a Text Editor
People try a few things:
Notepad / TextEdit: shows a wall of text with no structure
JSON viewers: good for exploring the data, terrible for reading conversations
Copy-paste into Word: loses all formatting and includes all the metadata noise
Print to PDF: you get a PDF of raw JSON, which is worse than useless
ChatExports processes your Claude export entirely in your browser: Your conversations are never uploaded to any server. Once you close the tab, the data is gone from memory.
Use Cases for Converted Claude Conversations
Research archives: Claude excels at analysis and research. Export those deep-dive sessions before they're buried in your history.
Code reviews: if Claude helped you debug or architect something, export the conversation as a reference document.
Writing projects: brainstorming sessions, drafts, and editorial feedback are worth keeping in a searchable format.
Team sharing: export a conversation as a Word doc and share it with colleagues who don't use Claude.
Pro Tip: Export Regularly
Unlike ChatGPT, Claude doesn't have a conversation limit, but Anthropic can change their data retention policies at any time. Export your important conversations periodically so you always have a local copy.