Class: SkyBlockAuction


# Class: SkyBlockAuction

# Hierarchy

  • Method

    SkyBlockAuction

# API Methods

# player

player(player: string): Promise<ResultArray<SkyBlockAuctionResponse, auctions>>

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.

example

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

# Parameters:

Name Type
player string

Returns: Promise<ResultArray<SkyBlockAuctionResponse, auctions>>

Defined in: methods/skyblock/auction.ts:14 (opens new window)


# profile

profile(profile: string): Promise<ResultArray<SkyBlockAuctionResponse, auctions>>

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.

example

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

# Parameters:

Name Type
profile string

Returns: Promise<ResultArray<SkyBlockAuctionResponse, auctions>>

Defined in: methods/skyblock/auction.ts:36 (opens new window)


# uuid

uuid(uuid: string): Promise<ResultArray<SkyBlockAuctionResponse, auctions>>

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.

example

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

# Parameters:

Name Type
uuid string

Returns: Promise<ResultArray<SkyBlockAuctionResponse, auctions>>

Defined in: methods/skyblock/auction.ts:58 (opens new window)