📝
TypeScript Support
Complete with typed interfaces for all API responses and IntelliSense support
Unopinionated async/await API wrapper for Hypixel's Public API with TypeScript support
npm install @zikeji/hypixelconst { Client } = require("@zikeji/hypixel");
const client = new Client("YOUR_API_KEY");
(async () => {
// Get player status
const status = await client.status.uuid("20934ef9488c465180a78f861586b4cf");
console.log(status);
// Get punishment stats
const stats = await client.punishmentstats();
console.log(stats);
})();MIT License - see LICENSE for details.