<?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: CloudyBot</title>
    <description>The latest articles on DEV Community by CloudyBot (@cloudybot).</description>
    <link>https://dev.to/cloudybot</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%2F3933919%2F9f763439-a094-4988-9ddc-1bcc5c587f6b.png</url>
      <title>DEV Community: CloudyBot</title>
      <link>https://dev.to/cloudybot</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cloudybot"/>
    <language>en</language>
    <item>
      <title>I built a free LLM pricing tool that updates itself daily. here's how</title>
      <dc:creator>CloudyBot</dc:creator>
      <pubDate>Fri, 15 May 2026 21:23:38 +0000</pubDate>
      <link>https://dev.to/cloudybot/i-built-a-free-llm-pricing-tool-that-updates-itself-daily-heres-how-2cpn</link>
      <guid>https://dev.to/cloudybot/i-built-a-free-llm-pricing-tool-that-updates-itself-daily-heres-how-2cpn</guid>
      <description>&lt;p&gt;Every time I had to pick an LLM for a project, the pricing &lt;br&gt;
research was painful.&lt;/p&gt;

&lt;p&gt;OpenAI updates their page. Anthropic changes their structure. &lt;br&gt;
Google buries the actual numbers behind 3 clicks. DeepSeek &lt;br&gt;
adds a new model. By the time I'd finished comparing, half &lt;br&gt;
my notes were already outdated.&lt;/p&gt;

&lt;p&gt;I kept ending up in the same loop. So I built a tool to do &lt;br&gt;
it for me.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;It's at cloudybot.ai/tools/ai-model-pricing — free, no signup.&lt;/p&gt;

&lt;p&gt;364 models from 59 providers in one sortable table. USD per &lt;br&gt;
1M tokens for input and output. Cached pricing where vendors &lt;br&gt;
expose it. Context windows, max output, modalities.&lt;/p&gt;

&lt;p&gt;You can filter by modality (text, image, audio, multimodal), &lt;br&gt;
sort by cheapest output, or just dump the whole thing as CSV.&lt;/p&gt;

&lt;h2&gt;
  
  
  The annoying part — keeping it current
&lt;/h2&gt;

&lt;p&gt;This is the part that took me longer than I expected.&lt;/p&gt;

&lt;p&gt;Pricing pages aren't stable. They change layouts. They add &lt;br&gt;
new SKUs. They reprice without warning (looking at you, &lt;br&gt;
DeepSeek). A static scrape would be stale in 2 weeks.&lt;/p&gt;

&lt;p&gt;So instead of scraping once, I set up an automation that &lt;br&gt;
runs daily. It opens each provider's pricing page in a real &lt;br&gt;
browser, extracts the rates, validates them against the &lt;br&gt;
previous snapshot, and only publishes when the data passes &lt;br&gt;
sanity checks.&lt;/p&gt;

&lt;p&gt;If GPT-5 input price suddenly drops from $5 to $0.05, the &lt;br&gt;
validation flags it as suspicious and the snapshot doesn't &lt;br&gt;
auto-publish. Manual review kicks in.&lt;/p&gt;

&lt;p&gt;This catches:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pricing pages that broke their own layout&lt;/li&gt;
&lt;li&gt;Vendors that A/B test pricing displays
&lt;/li&gt;
&lt;li&gt;Currency conversion glitches&lt;/li&gt;
&lt;li&gt;Off-by-100 errors when someone updates a CMS field wrong&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;p&gt;Nothing fancy. The browser automation is built on top of &lt;br&gt;
Chrome via my main project (CloudyBot — an automation &lt;br&gt;
platform). The pricing tool is essentially eating my own &lt;br&gt;
dog food.&lt;/p&gt;

&lt;p&gt;For each provider:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Specialist opens the pricing page in real Chrome&lt;/li&gt;
&lt;li&gt;Extracts the table or pricing cards as structured JSON&lt;/li&gt;
&lt;li&gt;Diffs against the last snapshot&lt;/li&gt;
&lt;li&gt;Publishes if delta is within normal ranges&lt;/li&gt;
&lt;li&gt;Flags for review otherwise&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Total runtime: about 6 minutes for all 59 providers.&lt;/p&gt;

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

&lt;p&gt;A few things that surprised me building this:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Vendor pricing pages are bad.&lt;/strong&gt; Even big providers like &lt;br&gt;
Anthropic and Google have inconsistent structure across &lt;br&gt;
different model pages. You can't write a generic scraper. &lt;br&gt;
Each provider needs its own extraction logic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cached input pricing is buried.&lt;/strong&gt; OpenAI and Anthropic &lt;br&gt;
both have cached input rates that can be 80-90% cheaper &lt;br&gt;
than regular input. Most comparison tools don't show this &lt;br&gt;
because it's a separate line item or only in docs. I &lt;br&gt;
specifically pull this for the table.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Free tier models lie.&lt;/strong&gt; A bunch of providers list "free" &lt;br&gt;
models that have hidden rate limits or require approval. &lt;br&gt;
The pricing page says $0 but the reality is more complicated. &lt;br&gt;
The table marks these as $0 list-price but I'd recommend &lt;br&gt;
checking before depending on them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Context windows are inflated.&lt;/strong&gt; Several providers claim &lt;br&gt;
1M token context windows that, in practice, degrade badly &lt;br&gt;
past 200K. The pricing table shows the claimed number but &lt;br&gt;
benchmark it before you commit architecture.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd add next
&lt;/h2&gt;

&lt;p&gt;A few things on the list:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Historical price changes (chart pricing trends over time)&lt;/li&gt;
&lt;li&gt;Quality scores per model (right now it's just cost)&lt;/li&gt;
&lt;li&gt;Latency benchmarks&lt;/li&gt;
&lt;li&gt;Throughput/rate limit comparisons&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you have ideas or find pricing that looks wrong, the &lt;br&gt;
contact link is on the footer. Most weeks I get 2-3 bug &lt;br&gt;
reports from devs noticing edge cases I missed.&lt;/p&gt;

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

&lt;p&gt;cloudybot.ai/tools/ai-model-pricing&lt;/p&gt;

&lt;p&gt;Free, no signup, no email gate. Built by a solo dev who &lt;br&gt;
was tired of the spreadsheet.&lt;/p&gt;

&lt;p&gt;If you're picking an LLM for a project this week, let me &lt;br&gt;
know what you ended up with. Always curious how people &lt;br&gt;
actually decide.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>automation</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
