Backpocket believes in data portability. You can export all your data at any time — no restrictions, no Pro tier required.
What’s included
Your export includes:
| Data | Included |
|---|
| Saves | All saves with title, URL, description, notes, visibility, dates |
| Tags | All tags and their associations with saves |
| Collections | All collections with their saves and default tags |
| Snapshots | Snapshot metadata (HTML content references) |
| Space settings | Your public space configuration and theme |
How to export
Go to Settings
Navigate to Settings → Data Export on the web app.
Click 'Export All Data'
Click the export button. Your data is compiled into a JSON file.
Download
The JSON file downloads to your device. It contains all your data in a structured, machine-readable format.
Data export is currently available on the web app only.
The export file is JSON with a clear structure:
{
"exportDate": "2026-02-05T12:00:00Z",
"space": {
"name": "Your Name",
"slug": "yourslug",
"bio": "Your bio"
},
"saves": [
{
"url": "https://example.com/article",
"title": "Article Title",
"description": "Article description",
"note": "Your personal note",
"visibility": "public",
"isFavorite": false,
"isArchived": false,
"tags": ["tag1", "tag2"],
"collections": ["Collection Name"],
"createdAt": "2026-01-15T10:30:00Z"
}
],
"tags": ["tag1", "tag2", "tag3"],
"collections": [
{
"name": "Collection Name",
"visibility": "public",
"defaultTags": ["tag1"]
}
]
}
The JSON format is easy to work with programmatically. You can use it to migrate to another service, build custom integrations, or create backups.
No lock-in
Data export is and will always be free. We believe your data belongs to you, and you should be able to take it anywhere at any time.