ChatCache supports two structured data formats for developers and analysts: JSON and CSV. JSON preserves the full conversation structure in a machine-readable format, while CSV produces a flat tabular file you can open directly in Excel or Google Sheets. Both formats are processed entirely in your browser with no data sent to any server.Documentation Index
Fetch the complete documentation index at: https://getchatcache.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
- JSON
- CSV
JSON export
JSON export serializes the conversation as an array of message objects. Each object contains the speaker role and the message content, giving you a clean structure to work with in any programming language.Example structure
Use cases
- Programmatic processing — load conversations into scripts, pipelines, or applications
- Fine-tuning datasets — use exported JSON as training data for custom models
- Developer workflows — inspect conversation structure, filter by role, or transform content