You can export your blog data at any time using the export feature in the Console. The exported data will include all your posts, tags, users, and other relevant information. The export is provided in JSON format.
It will take a couple of minutes depending on the size of your blog. You can track the progress in the History tab.

The exported JSON file has the following structure:
{
"blog": { a blog object },
"languages": [
language object,
...
],
"posts": [
{
"post": post object,
"variants": [
post variant object,
...
]
},
...
],
"users": [
user object,
...
],
"tags": [
tag object,
...
],
"media": [
media object,
...
],
"navigation": [
navigation object
...
],
"routes": [
route object,
...
],
"redirects": [
redirect object,
...
],
}All the objects are in the same format as the Console API.
Note: Each entry in posts pairs a Post Object with a variants array of PostVariant Objects, one per language. These variants have an additional content_html property with content converted into HTML.