Skip to content

Amir-78/discordbotsgg.api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

discordbotsgg.api

This package makes it easy for you to use the discord.bots.gg API

Installation

npm version npm downloads
  • Download Node.js
  • Write in CMD / Terminal:
npm i discordbotsgg.api

Example Code:

const dbAPI = require('discordbotsgg.api');
const { Client, Intents, } = require('discord.js');
const client = new Client({
    intents: [Intents.FLAGS.GUILDS,]
});

client.on('ready', async () => {
    console.log(`Logged in as ${client.user.tag}!`);
    //PostStats;
    await dbAPI.postStats(client, "API_TOKEN", "BOT_ID", false);

});

client.login("TOKEN");

Documentation

Functions:

Name Params Type Function Returns
await postStats() client,api_token,botID,refresh Object (Discord.Client),String,String,Boolean Posts your Bot Stats automatically, if refresh is true it will update your bot stats every 30 mins /
await getBot() botID,sanitized String,Boolean Get a bot using ID Object ({ Bot })
await getBots() Query Params Query Params Types Search for bots using Query Parameters Object

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

About

This package makes it easy for you to use the discord.bots.gg API

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published