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

# Cart (checkout/basket)

> Working with cart

## Example of usage

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

async function pageData() {
    await pages.get()
        .then((result) => {

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

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