Export Documentation
Easily back up or move your content with our simple export options. Whether you’re switching devices, changing platforms, or just want a personal archive, you can export your notes in universally accessible formats like Markdown/Text and JSON — or even export the whole database. You have the choice to export all your data at once, or just single Notes or Notebooks. This ensures your notes stay with you — no matter what tools you use in the future.
Note: Importing content is not currently available in our Android and iOS apps. This feature is on our roadmap and will be coming soon. Stay tuned!
You can export your notes as PDF files to share them easily with others. (Currently iOS only)
Database
We offer to export a one-to-one copy of the apps internal database file on Android (“.db”) for backup purposes. Mainly used by Power Users and Developers.
Markdown
Your notes will be exported as one “.zip” folder containing a directory with your notes (as “.md” files) according to your notebook structure. They can be easily shared and opened with any text editor.
Text
Your notes will be exported as one “.zip” folder containing a directory with your notes (as “.txt” files) according to your notebook structure with Markdown formatting. They can be easily shared and opened with any text editor.
JSON
Your data will be structured as an array of Notebooks each containing an array of Notes. Its best used for migration to other apps or services.
Notebook JSON Structure
| Field | Type | Description |
| notebookId | number | Unique identifier for the notebook. |
| remoteId | number? | Unique identifier for the notebook on the server. (Only for synced notebooks) |
| notebookTitle | string | Title of the notebook. |
| dateCreated | string | ISO 8601 timestamp when notebook was created. |
| dateUpdated | string | ISO 8601 timestamp when notebook was last updated. |
| notes | Note[] | Array of notes contained in this notebook. |
Note JSON Structure
| Field | Type | Description |
| id | number | Unique identifier for the note. |
| remoteId | number? | Unique identifier for the note on the server. (Only for synced notes) |
| title | string | Title of the note. |
| pinned | boolean | Whether the note is pinned for quick access. |
| dateCreated | string | ISO 8601 timestamp when the note was created. |
| dateUpdated | string | ISO 8601 timestamp when the note was last updated. |
| tags | string[] | List of tags for categorizing or filtering, can be empty. |
| content | string | The text content of the note with Markdown formatting. |