CLICommands
auctions
snug auctions <COMMAND>Auction management.
Subcommands
| Command | What it does |
|---|---|
create | Create a new auction |
list | List auctions |
get | Get auction details |
update-status | Update auction status |
bid | Place a bid on an auction |
close | Close and settle an open auction now (seller or admin) |
cancel | Cancel an auction and release all bid holds (seller or admin) |
bid-history | Get bid history for an auction |
proxy-bid | Set a proxy bid (automatic bidding up to max amount) |
batch-create | Atomically 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
- auction guide - what the service does and when to reach for it.
- API reference - every endpoint these commands call.
- CLI reference - global options, output modes, and exit codes.