How to Export Claude Conversations (Complete Backup Guide)
Learn how to export and back up your Claude chat history safely. Step-by-step guide to downloading Claude conversations and creating a private archive.
If you use Claude regularly, your conversation history is probably more valuable than you realise. Research threads, draft documents, debugging sessions, brainstorming notes — they accumulate fast. Anthropic does let you export all of it, but the process isn't obvious, and the resulting file isn't something you can just open and read.
This guide covers everything: how to trigger the export, what the file actually contains, why a raw JSON dump isn't enough, and how to turn it into a proper searchable archive you can use long-term.
What Claude's Export Gives You
When you request a data export from Claude, Anthropic emails you a download link within a few minutes to a few hours. The download is a ZIP archive. Inside, you'll find your conversation history as a JSON file.
The export includes:
- All conversations from your account, across every Claude model version you've used
- Timestamps for each message (creation time in UTC)
- The model used in each conversation (e.g. Claude 3 Opus, Claude 3.5 Sonnet, Claude 3.7 Sonnet)
- Your messages and Claude's responses, in full
What the export does not include:
- Conversations you've deleted before requesting the export
- Any files or images you uploaded as attachments (the text references may be there, but not the files themselves)
- Shared conversation links or collaboration data
- Account metadata like billing history
The file format is JSON. It's structured and complete — but it's not human-readable in the way a Word document or PDF is. You'll need a tool or some technical confidence to make use of it.
Step-by-Step: How to Export Claude Conversations
- Log in to claude.ai in your browser.
- Click your profile picture or initial in the bottom-left corner of the sidebar.
- Select Settings from the menu.
- Go to the Account tab (it should be the default).
- Scroll down to the Privacy section.
- Click Export Data.
- Confirm the request in the dialog that appears.
Anthropic will send an email to your registered address with a secure download link. The link typically arrives within a few minutes but can take up to a few hours if there's a queue. The link expires after 24 hours, so download promptly.
Click the link in the email, then download the ZIP file. Extract it to a folder you control — your desktop or a dedicated backups folder works well. Inside the ZIP you'll find a file named something like conversations.json.
That's your complete Claude conversation history. Now the question is what to do with it.
What's Inside the Claude Export File
The conversations.json file is a JSON array. Each item in the array represents one conversation, with nested objects for each message exchange.
A simplified example of what a single conversation entry looks like:
{
"uuid": "a1b2c3d4-...",
"name": "Untitled",
"created_at": "2025-11-04T09:22:11.000Z",
"updated_at": "2025-11-04T10:45:03.000Z",
"model": "claude-3-5-sonnet-20241022",
"chat_messages": [
{
"uuid": "m1m2m3...",
"sender": "human",
"text": "Can you help me refactor this function?",
"created_at": "2025-11-04T09:22:11.000Z"
},
{
"uuid": "m4m5m6...",
"sender": "assistant",
"text": "Sure — here's a cleaner version...",
"created_at": "2025-11-04T09:22:14.000Z"
}
]
}
If you have hundreds of conversations, the file can be several megabytes. Opening it in a text editor gives you raw JSON that's technically all there — but finding anything specific means manually scanning dense, unformatted text. It's not a practical way to access your history.
The Problem with Just Keeping the File
Downloading the export and saving the ZIP is better than nothing, but it creates its own problems.
It's not searchable. There's no way to type a keyword and find the conversation where you worked through that SQL problem six months ago. You're stuck scrolling or using Ctrl+F in a massive JSON blob.
It's not browsable. There's no interface. No conversation titles, no visual threading, no way to quickly skim what you have.
It goes stale. The export is a snapshot. Every new conversation you have after that date isn't in the file. If you don't re-export regularly, your archive falls further and further behind.
It's a single point of failure. One file, saved somewhere on disk. If the drive fails, or you accidentally overwrite it, that's everything gone.
A proper archive needs to be searchable, regularly updated, and organised in a way that makes the history actually useful — not just technically preserved.
How to Import into AI Chat Importer
AI Chat Importer is a free browser-based tool that reads your Claude export file and turns it into a searchable, browsable archive. Everything runs locally in your browser — your conversations are never uploaded to any server.
Here's how to import your Claude export:
- Go to app.ai-chat-importer.com — no account or sign-up required.
- On the import screen, select Claude as your platform.
- Click Choose File and select the
conversations.jsonfile from your extracted ZIP. - The importer processes the file in your browser. For a large export with hundreds of conversations, this takes a few seconds.
- Once imported, your full conversation history appears in a clean, readable interface.
Your conversations are stored in your browser's IndexedDB — local to your device, persisted across sessions, and never sent anywhere. Closing and reopening the app brings your archive back instantly.
You don't need to re-import from scratch each time. When you export from Claude again, you can import the new file and the tool handles deduplication automatically — only new conversations are added.
Searching and Organising Your Claude Archive
Once your conversations are imported, the full-text search works across everything: your messages, Claude's responses, code blocks, and long-form text. Type a keyword and every matching conversation appears, with the relevant passages highlighted.
Useful things you can do:
- Search by keyword — find every conversation where you discussed a specific topic, library, or project
- Filter by date — narrow down to conversations from a specific month or time range
- Browse by recency — see your most recent conversations in reverse chronological order, the way you'd expect a chat app to work
If you use both Claude and ChatGPT, you can import both exports into AI Chat Importer. The two platforms' conversations live side by side in the same interface — searchable together with a single query. If you were working on a project across both tools, you can find all related conversations regardless of which AI you used.
This is particularly useful for researchers and developers who use different models for different tasks and want a unified view of their work.
Keeping Your Archive Up to Date
A one-time export is a start, but your archive will go stale unless you re-export periodically.
A practical cadence for most users: export once a month. If you use Claude heavily for active projects, once a week is more appropriate. The export process takes less than a minute, and the download link arrives almost immediately for smaller accounts.
When you re-import into AI Chat Importer, you don't need to delete your existing archive first. Import the new conversations.json file the same way you imported the first one. The importer compares conversation IDs and only adds conversations that aren't already in your local archive. Your existing notes, organisation, or filters remain intact.
Set a recurring reminder — monthly exports take less than two minutes end-to-end once you know the steps.
Frequently Asked Questions
Does Claude delete old conversations?
Anthropic retains your conversations unless you manually delete them or request account deletion. There is no automatic expiry. However, Anthropic's data retention policies can change, and you have no guarantee that every past conversation will always be accessible through the Claude interface. Keeping your own export is the only way to guarantee long-term access to your history.
Can I export Claude Projects?
As of early 2026, the data export includes conversations held inside Claude Projects as well as standard conversations. Project structure metadata (the project name and grouping) may not be fully preserved in the exported JSON, but the underlying conversation content is included. Check the Claude help documentation for the latest on what Projects export covers, as this feature is still evolving.
Is my export data private?
The export file itself is just a file — Anthropic sends you a download link, and what you do with it is up to you. The risk to privacy comes from where you store or process the file after downloading. Avoid uploading the raw export to unknown online tools or cloud services, since the file contains your full conversation history in plaintext. AI Chat Importer is designed specifically for this use case: it processes the file locally in your browser, so the content never leaves your device.
Can I search across Claude and ChatGPT conversations together?
Yes — if you import exports from both platforms into AI Chat Importer, all conversations are stored in the same local archive and searched together. A single query will return results from Claude conversations and ChatGPT conversations side by side. This is useful if you split work across both tools and want a unified view of your AI-assisted work history.