# [Lolzteam](https://lolz.guru/) API for node.js

## ⚠️ Attention! This project uses ES modules.
### Please make sure you have `"type": "module"` in your package.json

## [Документация](https://github.com/NztForum/node-lzt/blob/master/docs-ru.md)

## Installation
`npm i lzt`
or, if you prefer yarn
`yarn add lzt`

## Example usage

```js
import { LZTApi } from 'lzt'

const api = new LZTApi({ token: 'your api token' })

const me = await api.users.getUser()
const myPayments = await api.market.getPayments()

console.log(me, myPayments)
```
