@zikeji/hypixel / SkyBlockAuction
Class: SkyBlockAuction
Example
const auctions = await client.skyblock.auctions.player("347ef6c1daac45ed9d1fa02818cf0fb6");Extends
Method
Methods
API
player()
player(
player):Promise<SkyBlockAuctionData[] &object>
Returns SkyBlock auctions by either player, profile or auction uuid. Only "active" auctions are returned, these are auctions that are still open or that have not had all bids/items claimed.
Parameters
player
string
Returns
Promise<SkyBlockAuctionData[] & object>
Example
const auctions = await client.skyblock.auction.player("347ef6c1daac45ed9d1fa02818cf0fb6");profile()
profile(
profile):Promise<SkyBlockAuctionData[] &object>
Returns SkyBlock auctions by either player, profile or auction uuid. Only "active" auctions are returned, these are auctions that are still open or that have not had all bids/items claimed.
Parameters
profile
string
Returns
Promise<SkyBlockAuctionData[] & object>
Example
const auctions = await client.skyblock.auction.profile("347ef6c1daac45ed9d1fa02818cf0fb6");uuid()
uuid(
uuid):Promise<SkyBlockAuctionData[] &object>
Returns SkyBlock auctions by either player, profile or auction uuid. Only "active" auctions are returned, these are auctions that are still open or that have not had all bids/items claimed.
Parameters
uuid
string
Returns
Promise<SkyBlockAuctionData[] & object>
Example
const auctions = await client.skyblock.auction.uuid("409a1e0f261a49849493278d6cd9305a");