# hypixel-api-reborn

> Feature-rich Hypixel API wrapper for Node.js

Latest version **11.3.7** (published 2024-10-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install hypixel-api-reborn
pnpm add hypixel-api-reborn
yarn add hypixel-api-reborn
bun add hypixel-api-reborn
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: has types; no vulnerabilities; high maintenance score.

Warnings: low downloads; no esm support.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 11.3.7 |
| Published | 2024-10-03 |
| First published | 2020-02-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=18.18.0 |
| Dependencies | 5 |
| Unpacked size | 559.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 101 |
| Author | StavZ |
| Maintainers | kathund, stavz |
| Keywords | minecraft, client, hypixel, api, hypixel-api, intellisense |

## Links

- npm: https://www.npmjs.com/package/hypixel-api-reborn
- Repository: https://github.com/Hypixel-API-Reborn/hypixel-api-reborn
- Homepage: https://github.com/Hypixel-API-Reborn/hypixel-api-reborn#readme
- Issues: https://github.com/Hypixel-API-Reborn/hypixel-api-reborn/issues
- npm.io page: https://npm.io/package/hypixel-api-reborn

## Dependencies (5)

- [node-cache](https://npm.io/package/node-cache.md) ^5.1.2
- [node-fetch](https://npm.io/package/node-fetch.md) ^3.3.2
- [rss-parser](https://npm.io/package/rss-parser.md) ^3.13.0
- [prismarine-nbt](https://npm.io/package/prismarine-nbt.md) ^2.5.0
- [skyhelper-networth](https://npm.io/package/skyhelper-networth.md) ^1.25.0

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 11.3.7 (latest) — 2024-10-03
- 12.0.0-31 (next) — 2026-08-29
- 12.0.0-30 — 2026-08-25
- 12.0.0-29 — 2026-08-10
- 12.0.0-28 — 2026-08-05
- 12.0.0-27 — 2026-06-27
- 12.0.0-26 — 2026-06-18
- 12.0.0-25 — 2026-06-11
- 12.0.0-24 — 2026-05-22
- 12.0.0-23 — 2026-02-11
- 12.0.0-22 — 2026-01-26
- 12.0.0-21 — 2026-01-13
- 12.0.0-20 — 2025-12-21
- 12.0.0-19 — 2025-12-19
- 12.0.0-18 — 2025-12-14
- … 117 more at https://npm.io/package/hypixel-api-reborn/versions

## README

<div align="center">
<img src="https://i.imgur.com/cDFoQZU.png?1">
<h1>Hypixel API • Reborn</h1>
<a href="https://discord.gg/NSEBNMM"><img src="https://discordapp.com/api/guilds/660416184252104705/embed.png"></a>
<a href="https://travis-ci.org/StavZ/hypixel-api-reborn"><img src="https://flat.badgen.net/travis/hypixel-api-reborn/hypixel-api-reborn"></a>
<a href="https://app.codacy.com/gh/Hypixel-API-Reborn/hypixel-api-reborn?utm_source=github.com&utm_medium=referral&utm_content=Hypixel-API-Reborn/hypixel-api-reborn&utm_campaign=Badge_Grade"><img src="https://flat.badgen.net/codacy/grade/71cd7e95499b496cb2dd11c29b9def33/master"></a>
<img src="https://flat.badgen.net/npm/v/hypixel-api-reborn">
<img src="https://flat.badgen.net/npm/node/hypixel-api-reborn">
<img src="https://flat.badgen.net/npm/license/hypixel-api-reborn">
<a href="https://github.com/Hypixel-API-Reborn/hypixel-api-reborn"><img src="https://flat.badgen.net/github/stars/hypixel-api-reborn/hypixel-api-reborn"></a>
<a href="https://www.npmjs.com/package/hypixel-api-reborn"><img src="https://nodei.co/npm/hypixel-api-reborn.png?compact=true"></a>
<h2>A feature-rich Hypixel API wrapper for Node.js</h2>
<br>
</div>

### Links

[Discord Support](https://discord.gg/NSEBNMM) | [Documentation](https://hypixel-api-reborn.github.io/) |
[NPM](https://www.npmjs.com/package/hypixel-api-reborn) |
[GitHub](https://github.com/Hypixel-API-Reborn/hypixel-api-reborn) |
[ToDo](https://github.com/Hypixel-API-Reborn/hypixel-api-reborn/projects/1) |
[CLI](https://github.com/Hypixel-API-Reborn/cli)

#### Requirements

**For Node.js users >= v18.18.0** <br> **For TypeScript users >= v3.5**

### Installation & Usage

```shell
npm i hypixel-api-reborn
```

```js
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](https://hypixel-api-reborn.github.io/).

## Changelog

[v11.0.0](https://github.com/Hypixel-API-Reborn/hypixel-api-reborn/releases/tag/11.0.0)

### Try it now

**[Code Sandbox](https://codesandbox.io/s/clever-babbage-xqmfw?file=/src/index.js)**

---
_Source: https://npm.io/package/hypixel-api-reborn · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
