Simple node.js lib for using Hypixel's API, with 100% API coverage! Making it easy to fetch data about players, resources, skyblock and much more!
Installationnpm install node-hypixel.js
https://node-hypixel.tiiny.site/index.html
// Create a new HypixelClient instance.const{ HypixelClient }=require("node-hypixel.js");constclient=newHypixelClient("API KEY");// Get player by their display name.client.getPlayerByDisplayname("iColtz").then((player)=>{// Console log the player.console.log(player);}).catch((error)=>{// Log the error if there is one.console.log(error);});How to obtain an API key? It's simple go on Minecraft Hypixel server, and type the command
/apito obtain an api key.How to get my UUID? Go to
https://api.mojang.com/users/profiles/minecraft/DISPLAY_NAME_HEREand change the end of the url to use players display name.
Author: iColtz