Skip to main content

Documentation Index

Fetch the complete documentation index at: https://minestorev3-api.ci.batlify.com/llms.txt

Use this file to discover all available pages before exploring further.

Example of usage

import { settings } from '@batlify/mscms-api'

async function settingsData(username: string) {
    await settings.get()
        .then((result) => {

            // Returns webstore settings data (currencies, languages, footer links, etc...)
            console.log(result)
        })
        .catch((e) => {

            // Getting webstore settings data failed
            console.log("Oops! Something went wrong :/", e)
        })
}