CLICommands

auctions

snug auctions <COMMAND>

Auction management.

Subcommands

CommandWhat it does
createCreate a new auction
listList auctions
getGet auction details
update-statusUpdate auction status
bidPlace a bid on an auction
closeClose and settle an open auction now (seller or admin)
cancelCancel an auction and release all bid holds (seller or admin)
bid-historyGet bid history for an auction
proxy-bidSet a proxy bid (automatic bidding up to max amount)
batch-createAtomically create many auctions from a JSON file

Run snug auctions <command> --help for that command's own options. The global options apply everywhere.

Examples

snug auctions create -i vintage-guitar -s 100.0 -r 500.0 -b 1000.0
snug auctions create -i rare-watch -s 500.0 -r 2000.0 --bid-increment 25.0 --end-time 2025-02-08T12:00:00Z
snug auctions batch-create -f auctions.json
snug auctions list
snug auctions list -s open
snug auctions get <auction-id>
snug auctions update-status <auction-id> -s open
snug auctions bid <auction-id> -a 150.0
snug auctions bid <auction-id> -a 150.0 -k retry-1
snug auctions bid-history <auction-id>
snug auctions proxy-bid <auction-id> -m 500.0
snug auctions close <auction-id>
snug auctions cancel <auction-id>

Next

On this page