A Hypixel Skyblock focused API providing an easier way to communicate with Hypixel's API.
The API has different endpoints which include; auction data, networth data, bazaar data and forge profit data.
- NodeJS >= 14
- Mongo Database
To get started, clone the repository using:
git clone https://github.com/zt3h/maro-api
Next go into the maro-api
folder and install the required dependencies using either Yarn or NPM:
yarn install
npm install
Then you can start the API service using the following command using either Yarn or NPM:
yarn start
npm start
First navigate into the /backup
folder and import the .csv files into a Mongo Database.
mongoimport --type csv -d maro -c auctions --headerline --drop auctions.csv <MongoConnectionString>
mongoimport --type csv -d maro -c bazaar --headerline --drop bazaar.csv <MongoConnectionString>
mongoimport --type csv -d maro -c leaderboards --headerline --drop leaderboards.csv <MongoConnectionString>
mongoimport --type csv -d maro -c players --headerline --drop players.csv <MongoConnectionString>
To change the database name replace maro in -d maro
with the desired database name.
Once done, you will then need to enter your Mongo DB URL to the config.js
before starting the application.
Endpoints that require a valid parameter will be listed on the API documentation which can be found by navigating to the below route once the application has been started.
http://localhost:3000/
For sending a request to the POST endpoints, details on the required body structure and the response format is found here
The below list of domains are users / organisations that have chosen to host this API under their own management. Note that these services could be stopped at anytime, so please make sure to keep up in touch with the owners.
https://maro.skybrokers.xyz - By SkyBrokers (discord.gg/ssb)
https://skyblock.acebot.xyz - By HyperGame (discord.gg/hXPapQ3)
If you have any questions or queries about the code please join Maro's discord
Maro's API is an open-sourced software licensed under the MIT