Skip to content
View not-kathund's full-sized avatar

Block or report not-kathund

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
not-kathund/README.md

Hypixel API • Reborn

A feature-rich Hypixel API wrapper for Node.js


Links

Discord Support | Documentation | NPM | GitHub | ToDo | CLI

Requirements

For Node.js users >= v14.x.x
For TypeScript users >= v3.5

Installation & Usage

npm i hypixel-api-reborn
const Hypixel = require('hypixel-api-reborn');
const hypixel = new Hypixel.Client('API-KEY');

// getPlayer
hypixel
  .getPlayer('StavZDev')
  .then((player) => {
    console.log(player.level); // 141
  })
  .catch((e) => {
    console.error(e);
  });

// getGuild
hypixel
  .getGuild('name', 'The Foundation')
  .then((guild) => {
    console.log(guild.level); // 111
  })
  .catch((e) => {
    console.error(e);
  });

For more examples go to our documentation.

Changelog

v11.0.0

Try it now

Code Sandbox

Popular repositories Loading

  1. rick rick Public

    HTML

  2. cold cold Public

    HTML

  3. not-kathund.github.io not-kathund.github.io Public

    Forked from Hypixel-API-Reborn/hypixel-api-reborn.github.io

    Hypixel API • Reborn documentation based on https://github.com/discord-akairo/discord-akairo.github.io

    JavaScript

  4. not-kathund not-kathund Public

    JavaScript

  5. REBORN-docs-TEST REBORN-docs-TEST Public

    TypeScript

  6. Wristspasm-Discord-Bot Wristspasm-Discord-Bot Public

    Forked from Wristspasm/Wristspasm-Discord-Bot

    Official Discord Bot for WristSpasm Guild on Hypixel Network.

    JavaScript