<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: 七爺</title>
    <description>The latest articles on DEV Community by 七爺 (@yujinju666).</description>
    <link>https://dev.to/yujinju666</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3948396%2Ff4205c27-ef81-47a5-b5a9-a19867313aac.jpeg</url>
      <title>DEV Community: 七爺</title>
      <link>https://dev.to/yujinju666</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yujinju666"/>
    <language>en</language>
    <item>
      <title>How I Built ShopAI — AI Price Comparison Across Every Store (Solo Maker Story)</title>
      <dc:creator>七爺</dc:creator>
      <pubDate>Sun, 24 May 2026 01:25:52 +0000</pubDate>
      <link>https://dev.to/yujinju666/how-i-built-shopai-ai-price-comparison-across-every-store-solo-maker-story-4i0b</link>
      <guid>https://dev.to/yujinju666/how-i-built-shopai-ai-price-comparison-across-every-store-solo-maker-story-4i0b</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Last month I was shopping for a new mechanical keyboard. I spent &lt;strong&gt;3 hours&lt;/strong&gt; opening 8 different tabs — Amazon, AliExpress, JD, Taobao, Best Buy, eBay, Newegg, Walmart — comparing the exact same model across every store. The price difference was 40%.&lt;/p&gt;

&lt;p&gt;I thought: why isn't there a single place where I can search once and see prices from ALL stores?&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://shopai.fun" rel="noopener noreferrer"&gt;ShopAI&lt;/a&gt; — AI-powered price comparison across every major online store. Type what you're looking for, and ShopAI:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scrapes prices from 6+ major e-commerce platforms simultaneously&lt;/li&gt;
&lt;li&gt;Uses AI to intelligently match products across different stores (same keyboard, different listings with different descriptions)&lt;/li&gt;
&lt;li&gt;Shows you the cheapest option, the fastest shipping, and the best overall value&lt;/li&gt;
&lt;li&gt;Works for any product — electronics, books, fashion, home goods&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js + React&lt;/strong&gt; — Frontend with server-side rendering for SEO&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Product Matching&lt;/strong&gt; — Custom model for cross-store product deduplication (this was by far the hardest part)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Scraping Pipeline&lt;/strong&gt; — Rotating proxies + rate limiting to handle multi-store queries&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Edge Functions&lt;/strong&gt; — Price queries resolve in under 2 seconds&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Hardest Problems Solved
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Product Matching is AI-Hard
&lt;/h3&gt;

&lt;p&gt;The same keyboard on Amazon is "Keychron K2 Wireless Mechanical Keyboard (Hot-Swappable)" — on AliExpress it's "Keychron K2 75% BT5.1 RGB Swappable" and on JD it's just "Keychron K2机械键盘". Same product, three completely different descriptions. I had to build a custom matching algorithm using embeddings + fuzzy string matching.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Anti-Bot Protection
&lt;/h3&gt;

&lt;p&gt;Every store has different anti-scraping measures. The pipeline handles Cloudflare challenges, CAPTCHAs, rate limiting patterns, and dynamic content loading differently per store.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Speed vs Completeness
&lt;/h3&gt;

&lt;p&gt;Users expect results in 2 seconds, but scraping 6+ stores takes time. I built a streaming architecture where results appear as they come in, with the best matches surfacing first.&lt;/p&gt;

&lt;h2&gt;
  
  
  Results So Far
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Launched 2 weeks ago&lt;/li&gt;
&lt;li&gt;500+ products searched daily&lt;/li&gt;
&lt;li&gt;Average price savings per search: 22%&lt;/li&gt;
&lt;li&gt;Users from 20+ countries (mainly US, China, India)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Adding more stores (Costco, Target, ASOS, Zalando)&lt;/li&gt;
&lt;li&gt;Price history tracking and drop alerts&lt;/li&gt;
&lt;li&gt;Mobile app with barcode scanning&lt;/li&gt;
&lt;li&gt;Browser extension for one-click price comparison&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Lessons for Solo Makers
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Ship fast, iterate faster&lt;/strong&gt; — First version was just 2 stores and a basic text search. I shipped it in 3 days.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI is the differentiator&lt;/strong&gt; — Without the product matching AI, this would just be another comparison site. The AI makes it feel magical.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pricing transparency is a superpower&lt;/strong&gt; — Users love knowing they're actually getting the best deal. The trust builds quickly.&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;Thanks for reading! I'd love feedback from the dev community — especially on the scraping architecture and the AI matching. What would you do differently?&lt;/p&gt;

&lt;p&gt;Try it out: &lt;a href="https://shopai.fun" rel="noopener noreferrer"&gt;shopai.fun&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Follow my solo maker journey: &lt;a href="https://x.com/yjj061014" rel="noopener noreferrer"&gt;@yjj061014&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>react</category>
      <category>typescript</category>
    </item>
  </channel>
</rss>
