1.0.3 • Published 4 years ago

boddd-api v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

BOD-API

Easily use the Bots OF Discord API from your Discord Bot bots!

Examples

// Create the client
const { Client } = require("b0d-api");
const dboats = new Client(
  "api key"
);

// Get stats about the list
await dboats.stats(); // Returns an object of stats

// Get information about the current bot user
await dboats.me(); // Returns an object of information about the current bot

// Get information about a specific bot
await dboats.botInfo("bot id"); // Returns general information about the requested bot

// Gets if a user has liked the bot on discordboats.club
await dboats.botLiked("user id"); // Returns the timestamp of when they voted if they have, otherwise false

// Post servers to discordboats.club
await dboats.postServers(100); // Returns true if it posts successfully

// Get information about a specific user
await dboats.userInfo("user id"); // Returns an object of user information

Webhook

const { Webhook } = require("dboats-api");
const webhookServer = new Webhook({
  port: 1234, // required
  auth: "password in dboats", // required
  path: "/webhook" // optional path for the webhook, defaults to /
});

webhookServer.on("like", (botId, userId) => {}); // create an event to handle when your bot is liked

webhookServer.on("unlike", (botId, userId) => {}); // create an event to handle when your bot is unliked

webhookServer.start(); // start the server