<?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: Adela C</title>
    <description>The latest articles on DEV Community by Adela C (@ac-prosp).</description>
    <link>https://dev.to/ac-prosp</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%2F3884929%2Fd09bee9a-d697-45e0-a237-2fbbced5c0f1.png</url>
      <title>DEV Community: Adela C</title>
      <link>https://dev.to/ac-prosp</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ac-prosp"/>
    <language>en</language>
    <item>
      <title>I built a developer API during baby nap times after losing 2 weeks of work to a no-code platform</title>
      <dc:creator>Adela C</dc:creator>
      <pubDate>Wed, 06 May 2026 12:02:48 +0000</pubDate>
      <link>https://dev.to/ac-prosp/i-built-a-developer-api-during-baby-nap-times-after-losing-2-weeks-of-work-to-a-no-code-platform-3lmg</link>
      <guid>https://dev.to/ac-prosp/i-built-a-developer-api-during-baby-nap-times-after-losing-2-weeks-of-work-to-a-no-code-platform-3lmg</guid>
      <description>&lt;h2&gt;
  
  
  The backstory
&lt;/h2&gt;

&lt;p&gt;A few weeks ago I was using a no-code platform to build my product. The platform restored an old checkpoint without warning and I lost 2 weeks of work overnight.&lt;/p&gt;

&lt;p&gt;So I did what any sensible person would do: I started over, but this time building something I actually own.&lt;/p&gt;

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

&lt;p&gt;&lt;strong&gt;Webintel&lt;/strong&gt; is infrastructure for developers and AI agents to handle real-time price and stock change signals.&lt;/p&gt;

&lt;p&gt;The model is simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your app detects a price or stock change&lt;/li&gt;
&lt;li&gt;You call our API with the event&lt;/li&gt;
&lt;li&gt;We meter it, charge $0.003, and fire your webhook instantly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You focus on detection. We handle the pipeline.&lt;/p&gt;

&lt;h2&gt;
  
  
  The tech stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Node.js + Express API hosted on Railway&lt;/li&gt;
&lt;li&gt;Supabase for the database&lt;/li&gt;
&lt;li&gt;Stripe for metered billing&lt;/li&gt;
&lt;li&gt;npm package: &lt;code&gt;npm install webintel&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;MCP server for AI agents: &lt;code&gt;npx @adela_c/webintel-mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;OpenAPI spec at api.webintel.io/openapi.json&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The honest part
&lt;/h2&gt;

&lt;p&gt;I have zero coding background. I built this entirely with Claude's help during my baby's nap times over a few sessions.&lt;/p&gt;

&lt;p&gt;I now own everything completely. No platform can roll back my work anymore.&lt;/p&gt;

&lt;h2&gt;
  
  
  What makes it different
&lt;/h2&gt;

&lt;p&gt;Most price monitoring tools send &lt;em&gt;you&lt;/em&gt; an email. Webintel sends &lt;em&gt;your app&lt;/em&gt; a webhook.&lt;/p&gt;

&lt;p&gt;It's infrastructure, not a consumer tool. The OpenAPI spec means AI agents can use it natively without any custom integration code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install &lt;/span&gt;webintel
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Get a free API key at &lt;strong&gt;webintel.io&lt;/strong&gt; — no signup required, just enter your email.&lt;/p&gt;

&lt;p&gt;Would love feedback from developers — does pay-per-signal make sense for your use case? What's missing?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>api</category>
      <category>showdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Stop scraping everything: a better way to track competitor price changes</title>
      <dc:creator>Adela C</dc:creator>
      <pubDate>Fri, 17 Apr 2026 17:30:47 +0000</pubDate>
      <link>https://dev.to/ac-prosp/stop-scraping-everything-a-better-way-to-track-competitor-price-changes-27k9</link>
      <guid>https://dev.to/ac-prosp/stop-scraping-everything-a-better-way-to-track-competitor-price-changes-27k9</guid>
      <description>&lt;p&gt;If you’ve ever tried to track competitor prices or product changes, you’ve probably realized something:&lt;/p&gt;

&lt;p&gt;It’s not the idea that’s hard — it’s everything around it.&lt;/p&gt;

&lt;p&gt;On paper, the problem sounds simple: "Know when a competitor changes price, stock, or product details."&lt;/p&gt;

&lt;p&gt;In reality, most solutions fall into two categories, and both have trade-offs.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Scraping-based approaches&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Tools like scraping platforms (e.g. Apify) are often the first place people go.&lt;/p&gt;

&lt;p&gt;They’re powerful and flexible. You can extract almost anything from a page and build your own pipelines.&lt;/p&gt;

&lt;p&gt;But in practice, this usually means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;running scheduled jobs
&lt;/li&gt;
&lt;li&gt;storing raw data
&lt;/li&gt;
&lt;li&gt;comparing results manually or in code
&lt;/li&gt;
&lt;li&gt;handling noise and inconsistencies
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You don’t actually get "price changes" — you get snapshots of data.&lt;/p&gt;

&lt;p&gt;Everything else is up to you.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Generic website monitoring tools&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Another common approach is using page monitoring tools (e.g. Visualping).&lt;/p&gt;

&lt;p&gt;These are much easier to set up:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;paste a URL
&lt;/li&gt;
&lt;li&gt;get notified when something changes
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But they tend to detect everything:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;layout updates
&lt;/li&gt;
&lt;li&gt;content tweaks
&lt;/li&gt;
&lt;li&gt;minor changes that don’t matter
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Which leads to a different problem:&lt;/p&gt;

&lt;p&gt;Too many alerts, not enough signal.&lt;/p&gt;

&lt;p&gt;And most outputs are designed for humans (screenshots, diffs), not systems.&lt;/p&gt;

&lt;p&gt;The real problem? &lt;br&gt;
Both approaches miss something important:&lt;/p&gt;

&lt;p&gt;You don’t actually care that a page changed.&lt;/p&gt;

&lt;p&gt;You care that something meaningful changed.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a price dropped
&lt;/li&gt;
&lt;li&gt;a product went out of stock
&lt;/li&gt;
&lt;li&gt;a new product appeared
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s the difference between data and signal.&lt;/p&gt;

&lt;p&gt;What actually works better?&lt;/p&gt;

&lt;p&gt;Instead of scraping everything detecting every change, it would be more useful to focus on meaningful events only, return structured data and trigger actions automatically  &lt;/p&gt;

&lt;p&gt;In other words, going from "Something changed on the page" to "Competitor price dropped from £120 → £95"&lt;/p&gt;

&lt;p&gt;Why does this matter? &lt;/p&gt;

&lt;p&gt;Because once you have clean, structured change events, everything becomes easier:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;you can automate pricing decisions
&lt;/li&gt;
&lt;li&gt;trigger alerts only when relevant
&lt;/li&gt;
&lt;li&gt;feed data into internal tools or AI systems
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And most importantly, you remove the need to build and maintain complex scraping pipelines.&lt;/p&gt;

&lt;p&gt;A simpler model&lt;/p&gt;

&lt;p&gt;A more practical workflow looks like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Add a competitor product URL
&lt;/li&gt;
&lt;li&gt;Monitor it continuously
&lt;/li&gt;
&lt;li&gt;Receive structured events when something meaningful changes
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;price_drop
&lt;/li&gt;
&lt;li&gt;price_increase
&lt;/li&gt;
&lt;li&gt;stock_change
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Delivered via API or webhook.&lt;/p&gt;

&lt;p&gt;Where this is going&lt;/p&gt;

&lt;p&gt;As more systems become automated, the need shifts from:&lt;/p&gt;

&lt;p&gt;"collect as much data as possible" to "get the right signal at the right time"&lt;/p&gt;

&lt;p&gt;That’s the difference between monitoring and decision-ready data  &lt;/p&gt;

&lt;p&gt;Final thought&lt;/p&gt;

&lt;p&gt;Competitor monitoring isn’t a data problem anymore.&lt;/p&gt;

&lt;p&gt;It’s a signal problem.&lt;/p&gt;

&lt;p&gt;And the tools that win will be the ones that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;reduce noise
&lt;/li&gt;
&lt;li&gt;deliver structured insights
&lt;/li&gt;
&lt;li&gt;and integrate directly into workflows
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're working on pricing, ecommerce, or automation systems, this shift is worth paying attention to.&lt;/p&gt;

&lt;p&gt;You can see an example of this approach here:&lt;br&gt;
&lt;a href="https://webintel.io" rel="noopener noreferrer"&gt;https://webintel.io&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>api</category>
      <category>saas</category>
      <category>automation</category>
    </item>
  </channel>
</rss>
