hypixel-nick-tracker
v2.0.3
Published
API wrapper to get nick data from Hypixel. Contact CactiveNetwork for an API key.
Downloads
8
Readme
Hypixel Nick Tracker by CactiveNetwork
To use this API, you will need a valid API key, you can get one at discord.gg/cake, and by running -ticket open
to contact an owner to give you a key after a background check is completed.
Additionally, you can access the API directly at the following endpoints:
- https://v2.hypixel-nickapi.luke.mx/nicktoign
nickname
andkey
parameters required - https://v2.hypixel-nickapi.luke.mx/igntonick
player
,key
andmethod
parameters required
Code Example:
const API = require('hypixel-nick-tracker');
const client = new API("CACTIVENETWORK_API_KEY_HERE");
// Get the real username and UUID of currently active nickname
client.NickToIGN("nickname")
.then(console.log)
.catch(console.error);
// Get the nickname of a real player through username or uuid
client.PlayerToNick("caykie", "username")
.then(console.log)
.catch(console.error);