Class: SkyBlockAuction


# Class: SkyBlockAuction

# Example

const auctions = await client.skyblock.auctions.player("347ef6c1daac45ed9d1fa02818cf0fb6");
1

# Extends

  • Method

# API

# player()

player(player): Promise<SkyBlockAuction[] & 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<SkyBlockAuction[] & object>

# Example

const auctions = await client.skyblock.auction.player("347ef6c1daac45ed9d1fa02818cf0fb6");
1

# profile()

profile(profile): Promise<SkyBlockAuction[] & 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<SkyBlockAuction[] & object>

# Example

const auctions = await client.skyblock.auction.profile("347ef6c1daac45ed9d1fa02818cf0fb6");
1

# uuid()

uuid(uuid): Promise<SkyBlockAuction[] & 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<SkyBlockAuction[] & object>

# Example

const auctions = await client.skyblock.auction.uuid("409a1e0f261a49849493278d6cd9305a");
1