When you request a data export, ɳSelf generates a ZIP archive containing all your personal data in a portable, machine-readable format.
export-{user-id}-{timestamp}.zip
manifest.json Schema version, tables, row counts, timestamp
README.txt Plain-English description of contents
users.ndjson Your profile record
accounts.ndjson Linked auth accounts
sessions.ndjson Login sessions
memories.ndjson Your memory entries (if using Claw)
memory_edges.ndjson Relationships between memories
topics.ndjson Auto-detected conversation topics
messages.ndjson Chat messages
conversations.ndjson Conversation metadata
files.ndjson File metadata (originals in files/ directory)
embeddings.ndjson Vector embeddings (float32 arrays)
audit_log.ndjson Your audit trail
billing_events.ndjson Invoices and receipts
files/ Original uploaded files (up to 5GB inline)Each table is exported as Newline-Delimited JSON (NDJSON). Every line is a single JSON object representing one database row. This format is compatible with standard data processing tools like jq, pandas, and BigQuery.
{
"schema_version": "1.0.0",
"export_timestamp": "2026-04-14T12:00:00.000Z",
"user_id": "uuid",
"tables": {
"users": { "row_count": 1, "file": "users.ndjson" },
"memories": { "row_count": 142, "file": "memories.ndjson" },
...
}
}If your total file storage exceeds 5GB, files are not included inline. Instead, manifest.json contains presigned download URLs valid for 7 days.
The export download link is sent to your email and expires after 7 days. You can request a new export once per 24 hours.