The downloaded ZIP file contains JSON files with your data. Here's the typical structure:
Understanding the JSON Format
The conversations are stored in JSON format. Each conversation includes the messages, timestamps, and metadata:
{
"uuid": "conv_abc123...",
"name": "Export Claude data guide",
"created_at": "2026-03-05T10:30:00Z",
"updated_at": "2026-03-05T11:45:00Z",
"chat_messages": [
{
"sender": "human",
"text": "How do I export my Claude chats?"
},
{
"sender": "assistant",
"text": "To export your Claude chats..."
}
]
}