JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q34749F
  • License MIT

Quickly retrieve data from the Hypixel Skyblock API

Package Exports

  • hyskydata

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hyskydata) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

HySkyData

This package is meant for those who need hypixel prices Created by: Apollo#6000

Example

const hyskydata = require("hyskydata");

// Define it like this
hyskydata.get({ needed: [] });

// Supply Item IDs
hyskydata.get({ needed: ["SUPERIOR_FRAGMENT", "SUPERIOR_DRAGON_CHESTPLATE"] });

Output

{
  SUPERIOR_FRAGMENT: {
    _id: 'SUPERIOR_FRAGMENT',
    _name: 'Superior Fragment',
    bazaar: {
      averageBuy: 243969,
      averageSell: 20741,
      currentBuy: 243969,
      currentSell: 239109
    },
    price: 243969
  },
  SUPERIOR_DRAGON_CHESTPLATE: {
    _id: 'SUPERIOR_DRAGON_CHESTPLATE',
    _name: 'Superior Dragon Chestplate',
    stats: { perPrice: 1, totalSales: 45 },
    cleanPrice: 18787434,
    price: 19219109
  }
}```