1.0.3 • Published 1 year ago

gbl.js v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

gbl.js

The official javascript module of the Guilded.best website's API

Installation

npm install gbl.js

Docs

Documentation

Example

Get user bots

const gblapi = require("gbl.js")

const getuserbot = await gbl.getUserBots("mMp5QG7d")

console.log(getuserbot)

Check if the user has voted for the bot

const gbl = require("gbl.js")

const checkvote = await gbl.checkUserVote("ArrzxaYA","mMp5QG7d")

console.log(checkvote)

Search Bot

const gbl = require("gbl.js")

const search = await gbl.searchBots("gbl")

console.log(search)

Get bot stats

const gbl = require("gbl.js")

const botstats = await gbl.stats("ArrzxaYA")

console.log(botstats)