> ## 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.

# Webstore Settings

> Get data from webstore settings

## Example of usage

```ts theme={null}
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)
        })
}
```
