Data

Exporting your Verdly data

Download your full Verdly history — every snapshot, category, holding and note — as a single JSON file that's yours to keep.

Last updated

Your data belongs to you. Verdly’s export gives you everything on your account as one plain JSON file — ready to back up, archive, or move into another account whenever you like.

Export your data

  1. Sign in at app.verdly.io and open Settings → Import / Export.
  2. Select Export.
  3. Verdly downloads a single file named verdly-export.json.

That’s it — no waiting, no email, no third party. The file is generated on the spot and saved straight to your device.

What’s included

The export covers your full history, not just your latest snapshot:

  • Every snapshot you’ve recorded, with its date.
  • The categories and holdings inside each snapshot, each with its value.
  • Any monthly notes you’ve written.

The format

The file is an array of period entries. Each entry has a date, an optional note, and a list of categories; each category has a name, a type of asset or debt, and a list of holdings with a name and numeric value.

[
  {
    "date": "2024-01-20",
    "note": "Optional period note",
    "categories": [
      {
        "name": "Cash",
        "type": "asset",
        "holdings": [
          { "name": "Savings Account", "value": 5000 }
        ]
      }
    ]
  }
]

This is exactly the shape the importer accepts, so an export round-trips cleanly: export from one account, import into another, and your history comes with you.

When to export

  • Backups. Keep a copy somewhere safe before any big change.
  • Moving accounts. Export from one account and import into another.
  • Before deleting. Always export first if you’re about to delete your data or account — deletion can’t be undone.

Next steps