Export

You own your data, and we make sure you can access them any time you need. You can export both data and media from the console.

To export: Console → Settings → Export

Export Data Structure

Hyvor Blogs exports data in JSON format with the following data structure.

{
    "blog": { a blog object },
    "languages": [
        language object,
        ...
    ],
    "posts": [
        post object,
        post object,
        post object,
        ...
    ],
    "users": [
        user object,
        ...
    ],
    "tags": [
        tag object,
        ...
    ],
    "media": [
        media object,
        ...
    ],
    "navigation": [
        navigation object
        ...
    ],
    "routes": [
        route object,
        ...
    ],
    "redirects": [
        redirect object,
        ...
    ],
}

All objects are from the Console API

In variants of the Post Object, there will be an additional content_html property with content converted into HTML.