Champagne Auctions
Submit an auction

Browse through our user submitted Champagne auctions. You can also submit your own auction by clicking the button above.

Filter


Order By


Options

Boxed Champagne Lanson Noble Cuvee 1995 - Auction

Boxed Champagne Lanson Noble Cuvee 1995

£250.00 Buy it now
28th Aug 18:09
1679 Views
0 Followers
Champagne Krug 1989 Vintage Magnum - Auction

Champagne Krug 1989 Vintage Magnum

£1,000.00 Buy it now
31st May 10:48
1781 Views
0 Followers
Devtools - SQL:
select `auctions`.*, (select count(*) from `auction_likes` where `auctions`.`id` = `auction_likes`.`auction_id`) as `like_count`, (select count(*) from `auction_bids` where `auctions`.`id` = `auction_bids`.`auction_id`) as `bid_count`, (select COALESCE(MAX(amount), auctions.start_price) from `auction_bids` where `auction_id` = `auctions`.`id` limit 1) as `current_price` from `auctions` where `status` = 'live' and `end_time` > '2026-01-06 21:14:00' and exists (select * from `users` where `auctions`.`user_id` = `users`.`id` and `email` like '[email protected]' and `users`.`deleted_at` is null) and (`title` like '%%' or `description` like '%%') and `auctions`.`deleted_at` is null order by `current_price` desc limit 20 offset 0