Swashbuckler

Export

Download a full JSON export of all your spaces, entries, templates, and tags.

Overview

Swashbuckler lets you export all your data as a single JSON file. The export includes everything across all your spaces — entries, templates, tags, relations, and pins.

How to Export

  1. Go to Settings > Account
  2. Click the Export Data button
  3. A JSON file downloads to your computer, named swashbuckler-export-YYYY-MM-DD.json

What's Included

The export file contains:

DataDescription
SpacesAll spaces you own (name, icon, settings)
EntriesAll entries across all spaces (title, content, properties, icon, cover image reference)
TemplatesAll templates across all spaces (entries with is_template: true — name, fields, content, properties)
RelationsAll entry-to-entry relations (mentions and manual links)
TagsAll tags across all spaces (name, color)
Entry-tag associationsWhich tags are applied to which entries
PinsYour pinned entries
Saved viewsNamed filter/sort configurations per template page

JSON Format

The export is a single JSON object:

\{
  "exportedAt": "2025-01-15T14:30:00.000Z",
  "spaces": [...],
  "entries": [...],
  "entryRelations": [...],
  "entryTags": [...],
  "tags": [...],
  "pins": [...],
  "savedViews": [...]
\}

Entries include both regular entries and template entries (distinguished by is_template: true). Each array contains the full records for that data type, with all fields and relationships preserved.

Notes

  • The export is a point-in-time snapshot — it captures your data at the moment you click Export
  • The export includes all spaces you own, not just the current space
  • Image files are not included in the export — the JSON contains references (URLs) to uploaded images, but not the image data itself
  • Entries in the trash or archive are included in the export
  • The export works for both account users and guest users (guest exports come from IndexedDB)

On this page