Penny auctions are one of the most commercially interesting formats ever invented and one of the easiest to get badly wrong. The economics are unusual, the regulatory position is genuinely ambiguous in several jurisdictions, and the software has to be exact — a rounding error in bid pack accounting is a direct financial loss.
This is a straight guide to the model, written from the perspective of having built these platforms. It includes the parts most articles on the subject leave out.

How the model actually works
In a penny auction — sometimes called a bidding fee auction — bidders buy bid credits in advance. Each bid placed costs one credit, raises the price by a small fixed increment (often one cent) and resets a countdown timer. When the timer expires, the last bidder pays the final displayed price.
The revenue is not the hammer price. It is the credits consumed. A $400 tablet that closes at $38.42 has absorbed 3,842 individual bids, and if each credit sold for $0.60 that is roughly $2,300 of credit revenue against a $400 cost of goods.
That is the model in one paragraph. Everything else is execution.
The unit economics you must model before you build
- Credit price — what one bid costs, usually between $0.40 and $0.75 depending on pack size.
- Cost of goods — your actual acquisition cost for the item, not its retail price.
- Expected bids to close — the critical unknown. Driven by how many active bidders you have. This is why the model fails on a new site: with eight bidders online, lots close at $2 and you lose money on every single one.
- Free bid promotions — every free credit you give away is direct margin loss, and new sites give away a lot of them.
- Buy-it-now credit — most platforms let losing bidders apply spent credits toward buying the item outright. It reduces churn and it complicates your accounting considerably.
The uncomfortable conclusion: penny auctions have a cold-start problem worse than almost any other marketplace. You cannot run profitable auctions without liquidity, and you cannot build liquidity without running auctions. Budget for a subsidy period and know how long you can fund it.
What the software has to do
Penny auction software has requirements a normal auction platform does not:
- Credit ledger with strict accounting. Every credit purchased, consumed, refunded or promotionally granted must be individually traceable. This is financial record keeping, not a counter.
- Sub-second timer accuracy under load. The countdown is the entire product. It must be server-authoritative and it must stay consistent across thousands of clients.
- Auto-bidders (bid agents). Users set a range and the system bids for them automatically. Essential to the format and a significant source of concurrency load.
- Anti-collusion and multi-account detection. Device fingerprinting, payment method matching, behavioural analysis. Without it you will have rings.
- Complete, immutable audit trail. Every bid, timestamped and unalterable. You will need this the first time someone accuses you of shill bidding — and someone will.

Our penny auction script covers the implementation, including the bid pack and agent modules.
The legal position — read this part
This is where operators get hurt. Penny auctions sit close to the line between a retail sale and a game of chance in many jurisdictions, and regulators in several countries have treated some implementations as gambling or as an unfair commercial practice.
Practical guidance, not legal advice: get a qualified opinion in every market you intend to operate in before you launch, not after. Structure matters enormously. Publishing complete odds and outcome data, offering a genuine buy-it-now path that lets any bidder recover the value of spent credits, and never using house accounts to bid are the design decisions that keep platforms on the right side of the line. Operators who ran without those protections are the ones who ended up in court.
Do not let anyone — including a software vendor — tell you the legal question is settled. It is not, and it varies by jurisdiction.
Where launches actually fail
Four consistent causes:
- Not enough bidders. Every other problem stems from this. Solve liquidity before you scale inventory.
- Products nobody wants. The format works on universally desirable goods with a known retail value — the current flagship phone, not an obscure kitchen gadget. Bidders must instantly recognise the value they are chasing.
- Trust collapse. One accusation of shill bidding that you cannot disprove with data will end the site. This is why the audit trail is not optional.
- Payment processor withdrawal. Many processors classify penny auctions as high risk. Secure a processor that has explicitly approved your model in writing before you build anything.
That last one surprises people and it has killed otherwise viable sites overnight. Do it first.
A sensible launch sequence
Get the legal opinion. Secure the payment processor. Model the unit economics with pessimistic bidder counts. Build or license the platform. Seed a genuine community before you list anything expensive. Start with low-cost items and short timers to establish the rhythm. Scale inventory only as concurrent bidder counts justify it.
For related formats that carry less regulatory ambiguity, look at Dutch auction software and unique-bid formats — both create similar excitement without the bidding-fee structure.
Frequently asked questions
Are penny auctions legal?
It depends entirely on jurisdiction and implementation. Some countries permit them under consumer protection rules; others have restricted or effectively banned them. Get local legal advice before launching.
How much does penny auction software cost?
A licensed platform typically runs from a few thousand dollars up, depending on modules. See penny auction script for specifics.
How many active bidders do I need?
Enough that a typical lot attracts sustained competition rather than closing in a minute. In practice, hundreds of genuinely active accounts before the model turns profitable. Talk to our team about modelling it.