Live data from Hacker News

Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

priceperball.net

1–10 of 52 posts

Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#1
I took inspiration from diskprices.com, but applied it to my golfing hobby.

For someone who can't always keep it in the fairway, golf balls can get rather expensive, so I decided to build a way for me to view Amazon listings by how much they cost per ball in the hopes of finding some good deals. Hence the name of the website.

The site is hosted on Cloudflare pages and I use Github actions to trigger a python script that fetches and checks the prices. It runs twice a day. If the script encounters any new ASINs, it stores them for future checks, so the list of golf balls being price checked should keep growing over time. Changes are then pushed to Cloudflare pages.

There can sometimes be some pricing oddities when the product title says one count, but the unit count being returned from Amazon is another number, so I'm trying to add some checks to help accommodate for that. Right now, I just have some manual overrides for certain ASINs, but I'm looking to improve on it in the future.

The frontend is just some basic HTML, CSS and JavaScript.

Listings on Amazon can be inconsistent sometimes because, for example, product titles will say used balls, but the seller lists them as new. I added some filters to that allow you to exclude used/recycled balls, plastic golf balls, etc... You can also filter by brand.

Give it a spin and let me know if you run into any issues or have any feature ideas to make it more useful.

Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball
priceperball.net

Re: Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#5
Great idea, simple and effective. Tiny bit of feedback: seems like some listings use "unit count" for the number of balls, look at the most expensive listing for an example. Annoyingly the second most expensive balls have the number of dozens in the unit count instead.

Re: Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#6

Somethings broken - the most expensive ball, "TaylorMade 2021 TP5x (3+1 Box) 4DZ" is listed as $169.95 for 1 ball. Clicking through, this is actually for 4 dozen balls, making the actual per ball $3.54

I had the same thought, and checked a dozen or so of them, they're all multiple dozens of balls.

The submitter's description does make reference to this a bit, the Amazon product description quantity for these items is "1"...

And it gets more complicated for the ones that are 2 dozen, plus 1 dozen 'free'...

Re: Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#7

Great idea, simple and effective. Tiny bit of feedback: seems like some listings use "unit count" for the number of balls, look at the most expensive listing for an example. Annoyingly the second most expensive balls have the number of dozens in the unit count instead.

Yeah. I'm trying to figure out how to combat these inconsistencies. Right now, I have some manual overrides, but not sure it's sustainable to keep manually overriding inconsistent listings.

Any thoughts? Should I default to what's in the product title instead of the unit count? Not sure the best way to combat this.

Re: Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#8

Somethings broken - the most expensive ball, "TaylorMade 2021 TP5x (3+1 Box) 4DZ" is listed as $169.95 for 1 ball. Clicking through, this is actually for 4 dozen balls, making the actual per ball $3.54

Posting my other comment from above:

Yeah. I'm trying to figure out how to combat these inconsistencies. Right now, I have some manual overrides, but not sure it's sustainable to keep manually overriding inconsistent listings.

Any thoughts? Should I default to what's in the product title instead of the unit count? Not sure the best way to combat this.

Re: Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#9
Great idea, i love the simple html website :)

For determining the number of balls, i had an idea but not sure of how well it’d fit in. Could you feed the listing title, unit count, and description into an LLM with a basic “figure out how many balls are in this listing and make sure that number makes sense with the price” prefix prompt and then store that number with the ASIN? One LLM call per product should be pretty low cost, and it could automate a bunch of repetitive manual work

Re: Show HN: Price Per Ball – Site that sorts golf balls on Amazon by price per ball

#10

Somethings broken - the most expensive ball, "TaylorMade 2021 TP5x (3+1 Box) 4DZ" is listed as $169.95 for 1 ball. Clicking through, this is actually for 4 dozen balls, making the actual per ball $3.54

I had the same thought, and checked a dozen or so of them, they're all multiple dozens of balls. The submitter's description does make reference to this a bit, the Amazon product description quantity for these items is "1"... And it gets more complicated for the ones that are 2 dozen, plus 1 dozen 'free'...

Yeah... I'm just now realizing how relying on unit count in the listing is more problematic than I thought. Sellers say their unit count is 1, but the product title says it is 4 dozen. I need to figure out how to fix these inconsistencies.
Post reply on HN