Daily Amazon Price Guessing Game
I’ve been building a little daily game called Price Matchers. Inspired by Price is Right, I figured I could bring a price guessing game to the world using real Amazon products.
Here’s how it came together.
I’ve built games, including daily games (see OhWord!?), before. I also enjoy playing daily games quite a bit (my favorites are __, __, and __). Something that these games all have that OhWord!? does not have is a true finished state.
The games I enjoy most are puzzles meant to be solved. You answer a question and are either right or wrong and maybe you are judged for how right or wrong. In OhWord!? you are given a task meant to be completed, but it’s never done. User’s are never wrong or rewarded for obscure knowledge or quick thinking. It’s part of the reason that I don’t even play OhWord!? that often myself.
I wanted to make a new game, with set puzzles (like how the NYT Crossword is curated), that had a true end state.
Main goal: create a fun daily game with a solveable puzzle
I also wanted to see if I could generate some profit from it. With the game idea already being very product oriented, I felt there were a few opportunities to generate revenue:
With these goals, I started building (it’s 2026, so I really mean vibe coding).
Nothing exotic here, mostly chosen for zero cost and ease of use:
localStorageThis was the first project that I asked Claude to start from scratch, so it was interesting to see what choice’s it defaults to. I noticed that Claude likes Tailwind a lot. I cannot stand Tailwind, so I had to ask for a refactor.
Claude also recommended Neon and Drizzle, which I think is the right call for a project this size. It’s typed, lightweight, and its migration system is simple enough to reason about without a runbook. The schema is around five tables: puzzles, puzzle_slots, products, game_plays, and some ancillary stuff. Drizzle configs also allow Claude to see all the db change history, which is great because I ask Claude to make all these changes anyway.
The premise is simple: show someone an Amazon product, maybe they have something similar or maybe they’ve never heard of it, then ask them to guess the price. I called it “DealBusterz” (with the A->Z being an homage to Amazon’s logo).
The format was:
With a basic game created, it was time for some user feedback. I found that the game was too unforgiving. The game played too quickly, with the timer rushing you and only 1 guess. But the biggest thing was that the game didn’t let you feel smart. After 1 guess, you were told close, far or busted. No knowledge is gained and then used.
I also felt that advertisers wouldn’t like this for a few reasons:
So I changed it up:

This game was more fun, as you have time to correct your mistakes. There’s a feeling of discovery. And there’s a total score which sometimes works out to be better than each individual score.
With a new core mechanic, we needed a new name. I went with PriceMatcher$, because now the game is about matching price. I went with a fire theme.
🔥 Price Matchers — June 2
🔴🔴🟡⬇️
🟠🟡🟢⬇️
🟢🟢⬇️
$32.98 SHORT 💳🟡
https://pricematchers.flanny.app
And now for the behind the scenes part. Out of the gate I knew I would have to have a UI to add puzzles to. What I didn’t realize was how modular I would need things to be (I’ll talk about this in a sec).
The admin panel has:
Drag and drop became my best friend here. I realized I needed way to move products between puzzles and puzzles between days. This allows me to quickly change the schedule and modify puzzles at a high level.

I also didn’t have the puzzle list page initially. I started with a list of all products that I can add to. But when I realized puzzles should be themed, it became less important to see products themselves and more important to see the whole backlog of puzzles. So I added that page too.
This is all a lesson in realizing the value of versatility. Before, we had restrictions:
While these restrictions are helpful to make sure things works, they also make it very difficult to work on the puzzle schedule. No more going to write a puzzle you only have an idea for, but being forced to create a whole puzzle. Puzzles you don’t want to play don’t have to be deleted or rescheduled, they can no be unscheduled.

I also made sure I had access to stats.

Now for OhWord!? I auto generated puzzles randomly, like spilling tiles out of a Scrabble bag, and that was enough. But for this, a little more has to go into each. Puzzles need a theme and three different products. Puzzles themes should be relevant to the season and coming holidays. Products should be unique and reasonably priced. Since more thought has to go into these puzzles, I figured I should have AI make a backlog of them.
I came up with 3 ways to do this curation.
I found that the first one has enough manual input that I might as well make the puzzles myself. I’m very fond of 2 and 3. With 2 I’m just adding content that I can choose to use or not. With 3, I’m making a puzzle and just not going through the tedious work of data entry.
And of course, I would love for this game to turn a little profit. I have Amazon Affiliate links on all the products, but I could be doing more.
Here’s what a sponsored puzzle slot can get an advertiser:
The second thing is arguably more valuable. If players are guessing low, maybe you need to improve your product images. If players are guessing high, maybe you could charge a little more.

I put up a page for Advertisers to find out more, and eventually buy ad slots.