The downloaded ZIP file contains JSON files with your Gemini conversations. Here's the typical structure:
Understanding the JSON Format
Each conversation is stored in JSON format with full message history, timestamps, and metadata:
{
"id": "conv_abc123xyz...",
"createdTime": "2026-03-05T10:30:00Z",
"lastModifiedTime": "2026-03-05T11:45:00Z",
"isArchived": false,
"messages": [
{
"role": "user",
"text": "How do I export my Gemini chats?"
},
{
"role": "model",
"text": "You can export your Gemini conversations..."
}
]
}