Exporting Your Data
Download your plugin library as a JSON file for backup or to use elsewhere.
Your data belongs to you. Plugin Library lets you download your library at any time, whether to keep a copy or to use it elsewhere.
Your data, your choice
What's Included in the Export
Your data export includes:
- Plugin list - The plugins in your library with their names, brands, categories and types
- Notes and ratings - Any notes and ratings you've added to plugins
- Your tags - The tags you've put on plugins
- Favorites and wishlist - Which plugins you've starred and which are on your wishlist
- Ownership details - Version, license type, purchase date and price, and authorized machines, where you've filled them in
- Date added - When each plugin went into your library
- Your account - The email address and display name on your account, and the date you signed up
It does not include your settings — things like your default view, how you group your library, your DAW and role, and your notification choices stay out of the file.
The file is your whole library
totalPlugins count near the top tells you how many the file holds, so you can check it against the number of plugins in your library.Export Format
The export is a JSON file. There is no format picker — JSON is the only format the app produces today. If you want your library in a spreadsheet, you'll need to convert the JSON yourself.
How to Export
Open Settings
Scroll to Data Management
Download your data
Regular backups
Understanding the Export File
The file has three parts: when it was made, the account it belongs to, and your library. Every plugin you own is an entry in library.plugins:
{
"exportedAt": "2026-08-29T18:04:11.000Z",
"user": {
"email": "you@example.com",
"displayName": "Dave",
"accountCreated": "2026-01-02T03:04:05.000Z"
},
"library": {
"totalPlugins": 312,
"plugins": [
{
"pluginName": "Pro-Q 3",
"brandName": "FabFilter",
"category": "EQ",
"type": "effect",
"version": "3.24",
"licenseType": "perpetual",
"purchaseDate": "2024-07-20",
"purchasePrice": "149.00",
"authorizedMachines": ["Studio iMac"],
"isFavorite": true,
"isWishlist": false,
"personalNotes": "My go-to surgical EQ",
"personalRating": 5,
"personalTags": ["mixing", "favorite"],
"addedAt": "2024-07-20T18:04:11.000Z"
}
]
}
}Fields you have not filled in come through as null — a plugin with no notes, no rating and no tags still gets an entry, with those fields empty.
Using Your Exported Data
Personal backup
Keep the export file somewhere safe as a backup of your plugin organization work.
Sharing with collaborators
Share your plugin list with band members, collaborators, or other producers.
Related Articles
Was this article helpful?