We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e17b66 + b1ad8d6 commit b7a470bCopy full SHA for b7a470b
api.py
@@ -34,6 +34,14 @@ def get_player_auctions(self, player_name: str) -> dict:
34
player_auctions = json.loads(api_request)
35
return player_auctions
36
37
+ def get_recently_ended_auctions(self) -> dict:
38
+ """
39
+ Returns a `dict` of all the auctions that have recently ended within 60 seconds.
40
41
+ api_request = requests.get("https://api.hypixel.net/skyblock/auctions_ended").content
42
+ recently_ended_auctions = json.loads(api_request)
43
+ return recently_ended_auctions
44
+
45
def get_news(self) -> dict:
46
"""
47
Returns a `dict` of the latest Skyblock news from Hypixel.
0 commit comments