1.0.4 • Published 3 years ago

@hypixel.js/hypixel.js v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Welcome to the official hypixel.js documentation. Hypixel.js is a new and powerful Hypixel API wrapper which makes the hypixel api easy to use.

const api = require("@hypixel.js/hypixel.js")

You can fetch your api key by going in game and typing "/api". An api key is ratelimited to 120 requests per minute and sharding is not allowed. Instead if you would like to make more requests, you need to contact the hypixel support desk and explain why you would like to exceed this limit. A client carries all of the api functionality, because it is always linked to it's api key, so you don't have to specify an api key every time you perform an action.

const client = new api.client('insert apiKey here')

client.players carries all functionality relevant to fetching player data. Let's use .get to see a user's version.

client.players.get('16751f79-c0b1-4e53-a0b5-90d31fc1d80d').then((player) => {
  console.log(`${player.displayName} is playing on Minecraft ${player.version}`)
})

Congratulations! You just made your first app that can tell what version a player plays on! Refer to client.players for more information on players, client.skyblock for skyblock information, and client to see all of the client actions.

You can check out the full documentation here

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago