Moe03 / HyskyAPI

Unofficial Hypixel API created for handling Auctions API of Skyblock gamemode with ease and efficiency.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update: This repo is unmaintained anymore, feel free to host the API on your own server if you still want to use it but the below links are not going to work.

HyskyAPI

Unofficial Hypixel API created for handling Auctions API of Skyblock gamemode with ease and efficiency.

IMPORTANT NOTE:

The API's root link keeps changing, but the main one right now is:

Secondary link:

About the API:

  • All auctions are updated every 2 minutes.
  • Auctions' limit per request is 200.
  • All auctions are sorted automatically to show the ending soon one's first.

An auction example:

https://i.ibb.co/prTTTFv/example.png

  • "item_name" => Item's name
  • "starting_bid" => Start Bid
  • "highest_bid_amount" => Highest Bid
  • "category" => Item's category
  • "bid_num" => Number of bid on Item
  • "Latest_bid => Array includes info about latest bidder
  • "tier" => Item's tier (Legendary)
  • "end" => Ending time in UNIX
  • "highest" => (for server side sorting)
  • "auctioneer" => uuid of auction's owner
  • "item_lore" => item's description including mincraft color codes
  • "uuid" => Profile's id (Hypixel)
  • "ending_time" => Ending time in minutes
  • "item_count" => Amount of item(s)
  • "anvils" => Anvil Uses
  • "hex_code" => Color code for the item

API's root:

The Api root is https://api.mystichat.xyz/apihandle.php

There are 2 types of requests:

  • req=top To get top 200 auctions.
  • req=search to Search through Auctions and needs a query.

so for example let's say you want to search for "aspect of the end"
https://api.mystichat.xyz/apihandle.php?req=search&query=aspectoftheend
This will return 200 AOTEs auctions sorted by ending time (This searches through all active skyblock auctions).

but what if you want more?

https://api.mystichat.xyz/apihandle.php?req=search&query=aspectoftheend&page=1

This will return the next 200 AOTE auctions.

Notes:

If you would like to support me or have any suggestions make sure to join my Discord.

About

Unofficial Hypixel API created for handling Auctions API of Skyblock gamemode with ease and efficiency.


Languages

Language:PHP 87.2%Language:Hack 12.8%