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

# Customer Profile

> Get data from customer profile

## Example of usage

```ts theme={null}
import { profile } from '@batlify/mscms-api'

async function profileData(username: string) {
    await profile.get(username)
        .then((result) => {

            // Returns profile data
            console.log(result)
        })
        .catch((e) => {

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