/api/playerauctions/getRecentAuctionsByUUID/{page}
Retrieve a paginated list of recent auctions from a player.
Parameters:
page
: The page number to retrieve (for pagination).uuid
: Required query parameter to fetch the auctions from the player.
Response:
The response will return a JSON object with the following structure:
Fields:
totalAuctions (Number): The total number of auctions available.
totalPages (Number): The total number of pages for the auctions.
currentPage (Number): The current page number being viewed.
auctions (Array): A list of auction items.
randomSort (Number): A random sort value for the auction.
internalCurrency (Null): The internal currency value.
price (Number): The price of the auction item.
auctionDate (Number): The timestamp when the auction was created.
auctionServer (String): The server where the auction is hosted.
itemAmount (Number): The number of items listed in the auction.
uuid (String): The unique identifier for the auction.
world (String): The world associated with the auction.
unlimited (Boolean): Whether the auction has unlimited items.
type (String): The type of auction.
currency (Object): Information about the currency used in the auction.
integrated (Boolean): Whether the currency is integrated into the auction.
version (String): The version of the currency system.
minPricePurchaseAmount (Number): The minimum purchase amount for the auction item.
minPriceSellAmount (Number): The minimum sell amount for the auction item.
maxPriceSellAmount (Number): The maximum sell amount for the auction item.
minPriceBidAmount (Number): The minimum bid amount for the auction item.
name (String): The name of the currency.
enabled (Boolean): Whether the currency is enabled.
currencyName (String): The name of the currency.
internalCurrencies (Array): A list of internal currencies associated with the auction.
id (Number): The unique ID of the auction.
item (Object): Details of the item being auctioned.
type (String): The type of the item.
meta (Object): Metadata for the item, if applicable.
enchants (Object): Enchantments applied to the item.
minecraft:mending (Number): The level of the Mending enchantment.
minecraft:protection (Number): The level of the Protection enchantment.
minecraft:unbreaking (Number): The level of the Unbreaking enchantment.
amount (Number): The amount of the item, if applicable.
originalPrice (Number): The original price of the auction item.
auctionCategories (Array): A list of auction categories.
bidder (Null): Information about the bidder, if applicable.
bidding (Boolean): Whether bidding is allowed for the auction.
expireTime (Number): The expiration time of the auction item in milliseconds.
Note:
Authentication is required to access this endpoint.
Based on server settings, you may not be able to access auction information if you do not own the auction.
Last updated
Was this helpful?