Official module for the interacting with the API on [DBL](https://discordbotslist.co)
npm install @discordbotslist/sdkyarn add @discordbotslist/sdk or npm i @discordbotslist/sdk#### Posting Stats
``js
const client = Discord.Client() // your Discord Client
const { Api } = require('@discordbotslist/sdk')
const api = new Api('key')
setInterval(() => {
api.postStats(client.user.id, {
serverCount: client.guilds.size,
shardCount: client.shard.count
})
}, 300000) // 1 / 5m or else you will get ratelimited
`
#### Getting bot Information
`js
const client = Discord.Client() // your Discord Client
const { Api } = require('@discordbotslist/sdk')
const api = new Api('key')
api.getInfo(client.user.id).then(r => console.log)
``