<?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: Arnon Shimoni</title>
    <description>The latest articles on DEV Community by Arnon Shimoni (@arnon_shimoni_f734319d79c).</description>
    <link>https://dev.to/arnon_shimoni_f734319d79c</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%2F3862023%2F59597294-4a6d-492c-ae94-2bb0ffd77b76.jpg</url>
      <title>DEV Community: Arnon Shimoni</title>
      <link>https://dev.to/arnon_shimoni_f734319d79c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arnon_shimoni_f734319d79c"/>
    <language>en</language>
    <item>
      <title>Why we treat credits and wallets as first-class billing primitives</title>
      <dc:creator>Arnon Shimoni</dc:creator>
      <pubDate>Sat, 16 May 2026 21:09:02 +0000</pubDate>
      <link>https://dev.to/arnon_shimoni_f734319d79c/why-we-treat-credits-and-wallets-as-first-class-billing-primitives-5872</link>
      <guid>https://dev.to/arnon_shimoni_f734319d79c/why-we-treat-credits-and-wallets-as-first-class-billing-primitives-5872</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;tl;dr: Most billing systems model a credit wallet as a prepaid cash balance. That works at day zero. It breaks the moment your product has multiple types of credits with different per-unit costs, different margins, and different rate cards sitting between your token layer and your customer-facing price. Our customer &lt;a href="https://www.reson8.dev" rel="noopener noreferrer"&gt;Reson8&lt;/a&gt; needed multiple wallets, structured around a rate card layer instead of one prepaid counter.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Lots and lots of billing systems model credits as prepaid cash. Pay $100, get $100 of credit. Burn the credit, the balance goes down. That's because it's often treated as "just an engineering thing" where it's a fancy counter.&lt;/p&gt;

&lt;p&gt;The model is clean until your product has more than one thing customers buy credits for.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why we'd rather hold credits than money
&lt;/h2&gt;

&lt;p&gt;There's a line we come back to internally:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I'd rather have credits in a wallet than money, because money I have to give back. Credits I can expire.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A money wallet creates a &lt;em&gt;liability&lt;/em&gt;. Whatever your customer deposits, you owe it back if they don't spend it. Credits work on your terms: when they expire, what they cover, under what conditions they're valid. The obligation is yours to design.&lt;/p&gt;

&lt;p&gt;Not great for customers necessarily, but great for businesses running with AI.&lt;/p&gt;

&lt;p&gt;A wallet targeting a single product category is what tax law calls single-purpose: intended use is known at purchase, so VAT is calculated when the funds go in. A general-purpose wallet, where a customer might spend across your product, is multiple-purpose: intended use is unknown at purchase, so VAT is calculated when they actually use it. Credits are a third category. You're selling a product (100 credits for $90), VAT applies at purchase, and the credit has its own exchange mechanics entirely separate from currency.&lt;/p&gt;

&lt;p&gt;So if you have three wallet types, you get three different VAT treatments and three different points of revenue recognition.&lt;/p&gt;

&lt;p&gt;If you model them as one thing and finance finds out later, and won't be happy with you.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why single wallets aren't right
&lt;/h2&gt;

&lt;p&gt;The single-wallet model assumes interchangability. All credits are equal. One credit buys one unit of anything in the product.&lt;/p&gt;

&lt;p&gt;That assumption is kinda true for simple products but not for modern AI stuff where the cost of delivering one unit varies across workloads. A minute of transcription on a custom-trained domain model costs more to deliver than a minute of batch generic transcription. If you change languages it becomes even clearer, because the underlying token countss are not the same.&lt;/p&gt;

&lt;p&gt;When those two workloads draw from the same credit pool, the billing system can't enforce that difference. That means customer's credits become fungible across products that aren't and the margin doesn't match what was invoiced.&lt;/p&gt;

&lt;p&gt;That's a data model problem!&lt;/p&gt;

&lt;h2&gt;
  
  
  What Reson8 needed
&lt;/h2&gt;

&lt;p&gt;Reson8 builds hyper-customizable speech recognition for European languages: real-time, domain-adaptive, running on EU GPUs with no audio retention. They bill by the minute across multiple workload types. Standard transcription. Custom-domain models adapted on up to 1M tokens of customer context with real-time processing versus batch - and each has a different cost basis.&lt;/p&gt;

&lt;p&gt;The moment a customer at Reson8 pre-purchases minutes, the question becomes: which kind? Standard-transcription minutes and custom-domain real-time minutes are different products. You can't let customers use one pool for the other: the product doesn't allow it, and the margin profile doesn't support it.&lt;/p&gt;

&lt;p&gt;What companies like Reson8, ElevenLabs, Wispr need is at least three distinct rating systems, that translate to wallet types: one for standard minutes, one for custom-domain minutes, and one that handles real-time processing overages as a metered charge when the pre-purchased pool runs empty.&lt;/p&gt;

&lt;p&gt;In theory, each can have its own top-up schedule, expiry rules, and invoicing behavior.&lt;/p&gt;

&lt;p&gt;A single prepaid balance doesn't model that. It guesses at it at best.&lt;/p&gt;

&lt;h2&gt;
  
  
  The token layer is why
&lt;/h2&gt;

&lt;p&gt;Speech AI adds a dimension most billing systems weren't built around. The model thinks in tokens. The customer thinks in minutes. Contracts denominate in credits. Finance works in dollars (or Euros).&lt;/p&gt;

&lt;p&gt;Each link is a rate:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;tokens → minutes → credits → dollar&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;A minute of real-time transcription in a custom-adapted model on a dedicated EU cluster consumes more tokens than a standard batch job on a generic model. The conversion factor varies by workload, by model version, by language pack, by the level of domain adaptation the customer has configured.&lt;/p&gt;

&lt;p&gt;Most billing systems let you set a price per event, or a price per unit of consumption. What they don't support is a rate card layer sitting &lt;em&gt;between&lt;/em&gt; the metering layer and the wallet layer. A rule that says: one meter event tagged &lt;code&gt;workload: custom-realtime&lt;/code&gt; burns 3 credits from wallet B, while one meter event tagged &lt;code&gt;workload: standard-batch&lt;/code&gt; burns 1 credit from wallet A.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgzkvv5se9s98917f1ja.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgzkvv5se9s98917f1ja.png" width="800" height="482"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Remember I said engineers see it as a counter? That's not how counters work.&lt;/p&gt;

&lt;p&gt;When that rate card lives in application code rather than billing configuration, it's invisible to finance and re-coded every time the cost model changes. Which in AI, is quote often.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why the rate card has to be in the billing layer
&lt;/h2&gt;

&lt;p&gt;Lots of speech vendors also have custom model adaptation as a product in its own right: a one-time charge to adapt the model on a customer's data, then a recurring credit pool to use it. The initial adaptation and the ongoing credit wallet are related but distinct events.&lt;/p&gt;

&lt;p&gt;The whole revenue stack has to handle both on the same invoice and recognize revenue at the right moment for each.&lt;/p&gt;

&lt;p&gt;You could call this &lt;em&gt;hybrid&lt;/em&gt;, where a one-time charge triggers a wallet provisioning event, the wallet burns down as the customer runs workloads, it auto-tops-up on a schedule or on demand, and overages switch to real-time metering when the pool hits zero.&lt;/p&gt;

&lt;p&gt;For that to work, the wallet has to carry more than just a counter, but some extra metadata: which plan provisioned it, which meters feed into it, which rate card converts events into credit deductions. A counter doesn't do that.&lt;/p&gt;

&lt;p&gt;The Stripe method (and lots of other vendors) have gift-cards or "balances" given to a customer, but they're not separate objects - you can't spin them up and move them around. Connecting them requires orchestration code you write and maintain. Lago's credit primitives don't compose naturally with multi-wallet, multi-rate-card configurations and if you're building on top of them - you need your own custom ogic that reimplements the billing layer on top of the billing layer.&lt;/p&gt;

&lt;p&gt;In Solvimon, &lt;a href="https://docs.solvimon.com/platform-guides/wallets-credits/credit-types-wallets" rel="noopener noreferrer"&gt;Wallets are a first-class primitive&lt;/a&gt;. Multiple wallet types per customer, each tied to a specific meter and a rate card, with configurable top-up and expiry rules. The rate card lives in configuration. Finance can see it, and the billing system enforces it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changes for revenue recognition
&lt;/h2&gt;

&lt;p&gt;Good wallet modeling cleans up revenue recognition.&lt;/p&gt;

&lt;p&gt;A customer pre-purchasing 10,000 standard minutes creates a deferred revenue liability. Each minute consumed triggers a recognition event against the right wallet. When the pool empties and the customer tips into metered overages, billing switches from credit burn to real-time usage. Finance sees one invoice, one ledger. The wallet's depletion is the &lt;a href="https://www.solvimon.com/glossary/revenue-recognition" rel="noopener noreferrer"&gt;revenue recognition &lt;/a&gt;schedule.&lt;/p&gt;

&lt;p&gt;During billing calculation, credits are reserved against pending invoices, then deducted only when the invoice goes final. Available balance is real balance minus reservations. That gap between reservation and deduction prevents customers from overspending mid-cycle, and makes the recognition schedule traceable without a spreadsheet.&lt;/p&gt;

&lt;p&gt;For Reson8, that matters. EU customers care about data handling and contract structure. An invoice that reflects custom-domain usage, standard usage, and real-time overages as distinct line items, each traced to its wallet and rate card, holds up in procurement, in audit, and in the customer relationship. That's not &lt;em&gt;my&lt;/em&gt; favourite thing to have to design around, but healthcare and financial services procurement teams care quite a lot about this.&lt;/p&gt;

&lt;h2&gt;
  
  
  The big decision/question behind credit pricing you need to make
&lt;/h2&gt;

&lt;p&gt;Credits carry a pricing decision inside them: what value to attach to each unit. The structural question is whether your billing system can model the relationships between your metering layer, your credit pools, and your revenue recognition without engineers maintaining the translation.&lt;/p&gt;

&lt;p&gt;For AI companies running multiple workloads with different cost bases, that requires multiple wallets and a rate card layer that understands what each pool represents.&lt;/p&gt;

&lt;h2&gt;
  
  
  Frequently Asked Questions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Why would a company prefer credits over a money wallet?
&lt;/h3&gt;

&lt;p&gt;A money wallet creates a financial liability: you owe the deposited amount back if the customer doesn't spend it. Credits are a product sale: the customer buys a defined unit with defined terms, including when those credits expire. That distinction affects your balance sheet, your VAT treatment, and how you recognize revenue. For many AI companies, credits are preferable precisely because you set the expiry terms rather than holding an open-ended obligation.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is the difference between a credit wallet and a prepaid balance?
&lt;/h3&gt;

&lt;p&gt;A prepaid balance is a single pool of value denominated in currency. A credit wallet is a typed pool denominated in a product-specific unit (minutes, tokens, API calls) with a rate card defining how it converts to currency and a meter defining what consumes it. For simple products, they're equivalent. For products with multiple workload types, only the wallet model holds up.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why would an AI company need multiple credit wallets for the same customer?
&lt;/h3&gt;

&lt;p&gt;When a product has multiple distinct workloads with different unit costs and different margins, a single pool treats all credit consumption as equivalent regardless of delivery cost. Multiple wallets enforce the boundary. Each wallet is tied to the workloads it covers, with its own rate card and top-up behavior.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is a rate card in AI billing?
&lt;/h3&gt;

&lt;p&gt;A rate card is a configuration layer that defines how a metering event converts into a credit deduction. For a speech AI company, this might be: one minute of real-time custom-domain transcription = 3 credits from the custom wallet. The rate card sits between the metering layer (which counts consumption) and the wallet layer (which tracks the balance).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qf3cwbtc65qbc6srmhj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qf3cwbtc65qbc6srmhj.png" width="800" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When rate cards live in application code, they're invisible to finance and hard to update - which is why you should keep them in a billing system.&lt;/p&gt;

&lt;h3&gt;
  
  
  How does token-to-credit conversion work in practice?
&lt;/h3&gt;

&lt;p&gt;The model layer consumes tokens. The product layer exposes a customer-facing unit (e.g., minutes). The billing layer converts that unit into credits at a rate defined by the rate card. A minute of transcription in a given model configuration costs a known number of tokens to produce. When the model changes and the per-minute token cost changes, the rate card updates in configuration.&lt;/p&gt;

&lt;h3&gt;
  
  
  Can Stripe Billing handle multiple credit wallet types?
&lt;/h3&gt;

&lt;p&gt;Stripe Billing supports basic combinations of subscription billing and metered usage, and has a credit grants, but not tied to wallets. Getting them to interact, especially across multiple credit types with different rate cards, requires custom orchestration code. Most teams building multi-workload AI products end up maintaining that orchestration layer themselves.&lt;/p&gt;

&lt;h3&gt;
  
  
  How does Solvimon model credit wallets?
&lt;/h3&gt;

&lt;p&gt;Solvimon treats Wallets as a first-class primitive: multiple wallet types per customer, each associated with a specific meter and a rate card, each with configurable top-up and expiry rules.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbkreophvmp62ca6dnk5y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbkreophvmp62ca6dnk5y.png" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The rate card layer handles the conversion between consumption units and credit deductions. Revenue recognition is calculated against wallet events. Wallet configuration lives in Solvimon rather than in application code.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>stripe</category>
      <category>infrastructure</category>
    </item>
    <item>
      <title>The hard part of usage-based billing isn't the metering</title>
      <dc:creator>Arnon Shimoni</dc:creator>
      <pubDate>Thu, 14 May 2026 08:13:17 +0000</pubDate>
      <link>https://dev.to/arnon_shimoni_f734319d79c/the-hard-part-of-usage-based-billing-isnt-the-metering-3m2d</link>
      <guid>https://dev.to/arnon_shimoni_f734319d79c/the-hard-part-of-usage-based-billing-isnt-the-metering-3m2d</guid>
      <description>&lt;p&gt;Every AI company I talk to is running two pricing motions at once:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;A subscription for platform access&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;+ consumption charges on top.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Sometimes a third if we consider the prepaid credits…&lt;/p&gt;

&lt;p&gt;The single-bill view is the easy part. The hard part is what's underneath with three different rating engines arguing about who owns the customer's invoice this month.&lt;/p&gt;

&lt;p&gt;This is a piece about what usage-based billing actually requires from your stack, the pricing models people are running, and where the comparison between Stripe Billing + Metronome and Solvimon actually stops being relevant (hint: not cost)&lt;/p&gt;

&lt;h2&gt;
  
  
  How usage-based billing works
&lt;/h2&gt;

&lt;p&gt;There are typically three components, working in sequence in UBB:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Event collection.&lt;/strong&gt; Your product emits an event for every billable action (an API call, a token consumed, a task completed). High volume, no data loss, audit trail, the whole shebang.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Metering and aggregation.&lt;/strong&gt; Raw events get aggregated into billable quantities, per customer, per product line, per billing period, you name it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Rating and invoicing.&lt;/strong&gt; Aggregated quantities get multiplied against the applicable rate to produce an invoice.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The hard part is in step 3 because of the complexities of "actioning" the math.&lt;/p&gt;

&lt;p&gt;Two customers can consume identical volume and owe different amounts because they're on different plans, different commitment tiers, or have a custom rate the AE negotiated at 2am on the contract close. The billing engine has to hold all of that in its head simultaneously, and apply the right logic per customer per cycle.&lt;/p&gt;

&lt;p&gt;You may think that's a minor thing but that's most of the work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pricing models people are running
&lt;/h2&gt;

&lt;p&gt;Here's what I see across our customers at Solvimon:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pure consumption.&lt;/strong&gt; Pay per unit, fixed rate, no minimum. Common in dev-facing AI APIs (e.g., the early OpenAI API). Volume varies wildly, customers refuse to commit, you eat the variance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tiered.&lt;/strong&gt; Per-unit rate decreases with volume, in two types:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Style&lt;/th&gt;
&lt;th&gt;What it means&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Volume&lt;/td&gt;
&lt;td&gt;Final tier rate applies to all units&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Graduated&lt;/td&gt;
&lt;td&gt;Each tier's rate applies only to units in that band&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;You need to support one or both, and you need to do it consistently. (The number of pricing pages I've seen that claim "graduated" and silently rate as "volume"... well.)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Committed consumption with overage.&lt;/strong&gt; Customer commits to a minimum spend or volume at a negotiated rate. Usage inside the commit bills at that rate. Usage above bills at a higher overage rate. This is the dominant structure for enterprise AI contracts right now. Predictable revenue for the vendor, predictable cost for the buyer, until the commit doesn't cover the year-end traffic spike. Then it gets interesting.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Credit-based.&lt;/strong&gt; Customer prepays into a balance. Usage draws it down and new credits get bought any time and all the time. You then have to decide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Do credits expire? At period end, never, or with a max balance roll-over?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How is breakage (unused expired credits) recognized?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How fresh does the balance need to look in the customer's UI? (Real-time, if you want to keep enterprise customers.)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If one balance spans multiple products, who tracks which product drew which credits?&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Again, like before - these aren't things you can just guess or decide because they're the architecture you'll be stuck with for eons.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Hybrid.&lt;/strong&gt; The catch-all for recurring base fee plus usage on top, consolidated onto a single invoice. Most enterprise B2B AI deals are shaped this way (e.g., a $50K/quarter platform fee plus tokens-consumed overage). The system runs subscription logic and consumption metering and then reconciles them.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the billing infrastructure actually has to do
&lt;/h2&gt;

&lt;p&gt;The list of things is long but the bar to reach, meaning the quality you have to live up to is surprisingly hard to get right:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Event ingestion&lt;/strong&gt; from a warehouse (Snowflake, BigQuery, Redshift) or directly via API. AI products at scale are doing millions of events a day. The pipeline has to handle that without dropping events.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Real-time metering.&lt;/strong&gt; Enterprise customers expect to watch usage accumulate in their dashboard, not wait for the invoice. For credit-based products this is non-negotiable.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;A rating engine that holds custom terms.&lt;/strong&gt; Per-customer overrides, ramp schedules, mid-cycle plan changes, currency conversion, recalculation when terms change. Pricing exceptions stay attached to subscriptions as structured data, not as PDF amendments stuffed in Salesforce.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Subscription and contract management at the structured-data level.&lt;/strong&gt; Bulk migrations, i.e., moving hundreds of customers from one plan version to another while preserving per-customer custom terms, is a routine operation in mature systems. In immature ones it's a JIRA epic.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Multi-entity, multi-currency.&lt;/strong&gt; Different legal entities, different currencies, different tax jurisdictions, different invoice formats, intercompany reconciliation. Becomes a hard requirement the day you sign a customer in a country that wasn't on the roadmap.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Tax.&lt;/strong&gt; My favorite topic - because you can either go native, or via Avalara, Anrok, Sphere, etc. Usage-based tax is harder than subscription tax because the taxable amount changes every invoice.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Revenue recognition.&lt;/strong&gt; My second favorite because under ASC 606 / IFRS 15, you recognize revenue as performance obligations are satisfied. For consumption: as usage occurs. For credits: deferred until consumed. Your billing system needs to feed period actuals, deferred revenue balances, and contract modification records into the finance team's stack in a form they can actually use. This is where most billing-system replacements get triggered.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fframerusercontent.com%2Fimages%2FlG0Vt50lgVwn8ZZbEZEnEzISBuI.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fframerusercontent.com%2Fimages%2FlG0Vt50lgVwn8ZZbEZEnEzISBuI.png" width="800" height="218"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Stripe Billing + Metronome vs purpose built system like Solvimon
&lt;/h2&gt;

&lt;p&gt;Series B AI companies scaling internationally usually look at two architectures:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Stripe Billing + Metronome.&lt;/strong&gt; Stripe runs subscriptions, invoicing, and payment collection. Metronome sits above it as the metering, rating, and event processing layer. You're integrating two systems and owning the seams.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Solvimon.&lt;/strong&gt; Catalog, Metering, Subscriptions, Wallets, Entitlements, Invoicing, Revenue, Workflows in one system. Solvimon connects to Adyen, Stripe, Checkout.com as payment gateways rather than replacing them. (Built by the team that ran billing at Adyen at over €1T in annual payment volume.)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The cost question is the wrong question to lead with because it doesn't matter as much as the architecture:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Capability&lt;/th&gt;
&lt;th&gt;Stripe Billing + Metronome&lt;/th&gt;
&lt;th&gt;Purpose built system like Solvimon&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Usage metering&lt;/td&gt;
&lt;td&gt;Metronome (separate system)&lt;/td&gt;
&lt;td&gt;Native&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pricing model configuration&lt;/td&gt;
&lt;td&gt;Code/API for non-trivial cases&lt;/td&gt;
&lt;td&gt;UI, no engineering required&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tax handling&lt;/td&gt;
&lt;td&gt;Third-party required&lt;/td&gt;
&lt;td&gt;Native but third-party also available&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Revenue recognition&lt;/td&gt;
&lt;td&gt;Stripe RevRec add-on or separate tool&lt;/td&gt;
&lt;td&gt;Period actuals into the finance team's stack&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-entity&lt;/td&gt;
&lt;td&gt;Engineering work&lt;/td&gt;
&lt;td&gt;Native&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Payment gateways&lt;/td&gt;
&lt;td&gt;Stripe&lt;/td&gt;
&lt;td&gt;Adyen, Stripe, Checkout.com&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bulk plan migrations&lt;/td&gt;
&lt;td&gt;Engineering work&lt;/td&gt;
&lt;td&gt;UI-based bulk operations&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best suited for&lt;/td&gt;
&lt;td&gt;Engineering-led teams already on Stripe&lt;/td&gt;
&lt;td&gt;Finance and RevOps-led teams, complex enterprise contracts&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The Stripe + Metronome stack works when you have engineering capacity to own the seam between the two systems and your pricing changes infrequently. Solvimon makes more sense when finance or RevOps wants to own pricing configuration directly, when enterprise custom terms are accumulating faster than you can wrangle them in code, and when you want pricing iteration to move at the speed of a product manager rather than an engineering sprint.&lt;/p&gt;

&lt;p&gt;These are different bets. They're not better-or-worse bets.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to evaluate when choosing a billing architecture
&lt;/h2&gt;

&lt;p&gt;Forget feature lists. Five questions cut through:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Configuration ownership.&lt;/strong&gt; Can finance or RevOps change a pricing model directly, or does every change require an engineering ticket? This determines how fast you can respond to a competitor or to model-cost shifts.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Mid-cycle changes.&lt;/strong&gt; A customer upgrades in week two. How does the system prorate? The right answer is automatic, auditable, consistent across customers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Credit architecture.&lt;/strong&gt; Expiration rules, breakage handling, balance freshness, multi-product allocation. Hard to change post-launch.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Bulk operations.&lt;/strong&gt; Moving customers across plan versions while preserving per-customer custom terms. How the platform handles this tells you whether it was designed for enterprise scale or shipped with the assumption that you'd never need it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The data pipeline to your finance stack.&lt;/strong&gt; Where do usage events enter, what's the lag from usage to billing record, and what does reconciliation look like when event counts don't match invoice amounts? This is where most billing-system errors originate. Ask to see the data model before you commit.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>ai</category>
      <category>devops</category>
      <category>stripe</category>
    </item>
    <item>
      <title>Best subscription billing software for SaaS in 2026: A decision guide</title>
      <dc:creator>Arnon Shimoni</dc:creator>
      <pubDate>Mon, 11 May 2026 14:58:41 +0000</pubDate>
      <link>https://dev.to/arnon_shimoni_f734319d79c/best-subscription-billing-software-for-saas-in-2026-a-decision-guide-3fce</link>
      <guid>https://dev.to/arnon_shimoni_f734319d79c/best-subscription-billing-software-for-saas-in-2026-a-decision-guide-3fce</guid>
      <description>&lt;h2&gt;
  
  
  tl;dr:
&lt;/h2&gt;

&lt;p&gt;There is no single best subscription billing software for SaaS in 2026, and there never was before that. There is however, one that is best for your decision. Eight platforms compete in this market and each one wins a specific buyer.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Pure subscription lifecycle: Chargebee, Maxio, plus Recurly if you're B2C&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Pure usage: Metronome&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hybrid pricing (seats, usage, credits, outcomes): Solvimon&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Merchant of record for global tax: Paddle&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Already deep in Stripe: Stripe Billing&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Large enterprise multi-product, where money is no object: Zuora&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'll walk you through five questions that decide your branch, and the trade-offs that matter for each platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this question is harder in 2026
&lt;/h2&gt;

&lt;p&gt;The category split that mattered in 2020, subscription billing versus usage metering, has collapsed. Most modern SaaS companies sell hybrid pricing now. Seats for the dashboard. Usage for the API. Credits for the AI features. Sometimes outcomes for the agent runs.&lt;/p&gt;

&lt;p&gt;The platforms that grew up serving one of those models are scrambling to add the others. The ones built native to hybrid have a structural lead. (And the buyers who picked the wrong tool in 2022 are migrating in 2026.)&lt;/p&gt;

&lt;p&gt;The decision today is not "which tool has more features." It is "which tool fits the pricing I'll be selling in two years, in the geographies I'll be selling in, with the engineering team I'll have." That's the question this guide answers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 5 questions that decide the billing choice
&lt;/h2&gt;

&lt;p&gt;Before evaluating vendors, think about these five questions:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. What's your pricing model?&lt;/strong&gt; Pure subscription (seats, plans, tiers), pure usage (API calls, tokens, events), or hybrid (some combination, including credits and outcomes). What is your FUTURE pricing model - is it going to always remain the same?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. What's your buyer mix?&lt;/strong&gt; Pure PLG self-serve, pure sales-led contracts, or both. Hybrid GTM is now the default for B2B SaaS over $5M ARR.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. What's your geographic scope?&lt;/strong&gt; Single entity, single currency. Or multi-entity, multi-currency, with VAT and GST obligations across regions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. What's your tax posture?&lt;/strong&gt; You handle compliance yourself with a tax engine. Or you want a merchant of record to take it off your plate (and a percentage of revenue with it).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. What's your engineering posture?&lt;/strong&gt; Comfortable configuring billing through a vendor dashboard. Or you want billing as code, versioned, scriptable, integrated into CI/CD.&lt;/p&gt;

&lt;p&gt;The answers map cleanly to one of the six decision branches below.&lt;/p&gt;

&lt;h2&gt;
  
  
  The decision tree
&lt;/h2&gt;

&lt;h3&gt;
  
  
  If you sell pure subscriptions: Chargebee, Recurly, or Maxio
&lt;/h3&gt;

&lt;p&gt;These three platforms grew up serving pure-subscription B2B SaaS. They handle plan lifecycle, prorations, dunning, and revenue recognition well. They are weaker on usage-based pricing and hybrid models.&lt;/p&gt;

&lt;h4&gt;
  
  
  Chargebee
&lt;/h4&gt;

&lt;p&gt;The lifecycle leader for mid-market subscription SaaS. Strong on trial-to-paid conversion, plan upgrades and downgrades, multi-currency, and tax. Used by finance and RevOps teams that want defined workflows around billing.&lt;/p&gt;

&lt;p&gt;Where it wins: established mid-market SaaS with stable subscription models that change pricing once or twice a year, not weekly.&lt;/p&gt;

&lt;p&gt;Where it doesn't: pure usage-based pricing, AI metering, or hybrid models that mix seats with consumption. Chargebee has added usage features over the past two years, but the core architecture is subscription-first.&lt;/p&gt;

&lt;p&gt;Pricing: contact sales.&lt;/p&gt;

&lt;h4&gt;
  
  
  Recurly
&lt;/h4&gt;

&lt;p&gt;The dunning specialist. Recurly's involuntary churn reduction is its defining feature, with smart retry logic that reduces failed-payment churn meaningfully for subscription businesses. ASC 606 revenue recognition is built in. Accounting integrations are deep.&lt;/p&gt;

&lt;p&gt;Where it wins: subscription businesses where involuntary churn is the primary revenue leakage problem.&lt;/p&gt;

&lt;p&gt;Where it doesn't: anything outside the subscription and dunning core. Limited usage support, no CPQ, narrower feature surface than full-stack platforms.&lt;/p&gt;

&lt;p&gt;Pricing: contact sales.&lt;/p&gt;

&lt;h4&gt;
  
  
  Maxio
&lt;/h4&gt;

&lt;p&gt;Born from the SaaSOptics and Chargify merger. Maxio is the finance-led choice. GAAP-compliant revenue recognition, deep ARR and NRR reporting, churn cohort analysis. CFOs like it because the reporting is audit-ready out of the box.&lt;/p&gt;

&lt;p&gt;Where it wins: finance-led B2B SaaS with strict revenue recognition needs and ARR / NRR reporting requirements.&lt;/p&gt;

&lt;p&gt;Where it doesn't: API-first or developer-led teams. Maxio is a finance tool that does billing, not a billing platform that does finance.&lt;/p&gt;

&lt;p&gt;Pricing: contact sales.&lt;/p&gt;

&lt;h3&gt;
  
  
  If you sell pure usage or consumption pricing: Metronome
&lt;/h3&gt;

&lt;p&gt;Metronome is purpose-built for consumption billing. Real-time event ingestion, complex rating logic, high-fidelity metering. The customer base skews developer-first: API companies, infra platforms, AI inference providers.&lt;/p&gt;

&lt;p&gt;Where it wins: pure usage-based companies that need a metering engine more than a subscription manager.&lt;/p&gt;

&lt;p&gt;Where it doesn't: hybrid pricing with subscriptions, CPQ, or multi-entity invoicing. Metronome's scope is narrower than full-stack platforms.&lt;/p&gt;

&lt;p&gt;Pricing: contact sales.&lt;/p&gt;

&lt;h3&gt;
  
  
  If you sell (or plan to sell) hybrid pricing (seats, usage, credits, outcomes): Solvimon
&lt;/h3&gt;

&lt;p&gt;Solvimon was built native to hybrid pricing where seats and usage and credits and outcomes coexist in the same ledger, with no orchestration code stitching subsystems together. The primitive vocabulary is explicit: Catalog (the products and prices), Metering (real-time usage ingestion), Wallets (credit pools and rollovers), Subscriptions (recurring lifecycle), Entitlements (what each customer can access), Invoicing (multi-entity, multi-currency), Revenue (recognition and reporting), Workflows (the connective tissue).&lt;/p&gt;

&lt;p&gt;Two architectural choices set Solvimon apart from the rest of this list.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;PSP-agnostic&lt;/strong&gt; - Solvimon works with Stripe, Adyen, and Checkout.com. You can switch payment processor without rebuilding billing. Stripe Billing locks you into Stripe. Solvimon doesn't lock you anywhere.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Headless&lt;/strong&gt; - configuration happens through the dashboard, the CLI, the API, and an MCP server. Pricing changes ship as code, in pull requests, with tests. Engineers don't sit in dashboards. They ship pricing the same way they ship features.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Where it wins: AI-native companies, hybrid pricing, multi-entity global SaaS, teams that want billing as code rather than billing as a dashboard. The "outgrown your first system" buyer, the one who started on Stripe Billing or Chargebee and hit the wall somewhere between $5M and $15M ARR.&lt;/p&gt;

&lt;p&gt;Where it doesn't: simple pure-subscription businesses that will never need usage or hybrid. Chargebee or Recurly will get you there with less surface area.&lt;/p&gt;

&lt;p&gt;Customer proof: &lt;a href="https://www.solvimon.com/customers/yapily" rel="noopener noreferrer"&gt;Yapily migrated 700 plans off custom code in 90 days&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Pricing: &lt;a href="https://www.solvimon.com/pricing" rel="noopener noreferrer"&gt;free up to $1M billed on the Essential plan&lt;/a&gt;, then $1,000/month up to €2M billed and 750K events/month. &lt;a href="https://www.solvimon.com/forai" rel="noopener noreferrer"&gt;Solvimon for AI is free up to $3M billed&lt;/a&gt;, then 0.4%. Growth and Enterprise tiers are custom. [VERIFY against live /pricing page before publishing.]&lt;/p&gt;

&lt;h3&gt;
  
  
  If you want a merchant of record for global tax: Paddle
&lt;/h3&gt;

&lt;p&gt;Paddle takes the merchant-of-record role. They become the seller of record in your transactions, which means they handle VAT, GST, US sales tax, and the compliance overhead that comes with selling internationally. You give up a percentage of revenue. You get back the time and risk of running tax compliance yourself.&lt;/p&gt;

&lt;p&gt;Where it wins: SMB and mid-market SaaS selling internationally, especially self-serve. The buyer who'd rather pay 5% to Paddle than hire a tax compliance team.&lt;/p&gt;

&lt;p&gt;Where it doesn't: enterprise contracts, hybrid pricing, custom CPQ, or any scenario where you need control over the customer relationship. The MoR model trades flexibility for compliance simplicity.&lt;/p&gt;

&lt;p&gt;Pricing: revenue share. Contact sales for enterprise tiers.&lt;/p&gt;

&lt;h3&gt;
  
  
  If you're already deep in the Stripe ecosystem: Stripe Billing
&lt;/h3&gt;

&lt;p&gt;Stripe Billing is the path of least resistance for teams already running Stripe Payments at depth. The integration is tight. Developer experience is strong. For simple recurring subscriptions, the time-to-launch is hard to beat.&lt;/p&gt;

&lt;p&gt;Where it wins: PLG SaaS with simple subscription plans, already on Stripe, with no immediate need for hybrid pricing or multi-entity billing.&lt;/p&gt;

&lt;p&gt;Where it doesn't: PSP optionality (you're locked to Stripe), enterprise contracts, multi-entity global billing, or hybrid pricing at scale. Teams routinely hit the Stripe Billing wall between $5M and $15M ARR and migrate.&lt;/p&gt;

&lt;p&gt;Pricing: 0.5% to 0.8% of billing volume depending on plan. [VERIFY current Stripe Billing pricing tiers.]&lt;/p&gt;

&lt;h3&gt;
  
  
  If you're large enterprise with multi-product complexity: Zuora
&lt;/h3&gt;

&lt;p&gt;Zuora is the enterprise incumbent. 50+ pricing models, deep compliance reporting, customizable discounting, multi-product billing. The platform CFOs at Fortune 500s default to.&lt;/p&gt;

&lt;p&gt;Where it wins: large enterprises with complex multi-product billing, deep compliance requirements, and the budget for a multi-quarter implementation with consultants.&lt;/p&gt;

&lt;p&gt;Where it doesn't: anything that needs to ship fast. Zuora is a heavy implementation that can take a year to implement. Total cost of ownership is high. Smaller teams will spend more time configuring than selling.&lt;/p&gt;

&lt;p&gt;Pricing: contact sales.&lt;/p&gt;

&lt;h2&gt;
  
  
  Side-by-side comparison
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Platform&lt;/th&gt;
&lt;th&gt;Pricing model fit&lt;/th&gt;
&lt;th&gt;Best for&lt;/th&gt;
&lt;th&gt;Pricing&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Solvimon&lt;/td&gt;
&lt;td&gt;Hybrid: seats, usage, credits, outcomes&lt;/td&gt;
&lt;td&gt;AI-native, scaling SaaS, multi-entity, headless monetization&lt;/td&gt;
&lt;td&gt;Free to $1M billed, then custom&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Chargebee&lt;/td&gt;
&lt;td&gt;Subscription&lt;/td&gt;
&lt;td&gt;Mid-market B2B SaaS&lt;/td&gt;
&lt;td&gt;Contact sales&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Zuora&lt;/td&gt;
&lt;td&gt;All models, enterprise-grade&lt;/td&gt;
&lt;td&gt;Large enterprise multi-product&lt;/td&gt;
&lt;td&gt;Contact sales&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Recurly&lt;/td&gt;
&lt;td&gt;Subscription with strong dunning&lt;/td&gt;
&lt;td&gt;Subscription-first SaaS&lt;/td&gt;
&lt;td&gt;Contact sales&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Maxio&lt;/td&gt;
&lt;td&gt;Subscription with finance reporting&lt;/td&gt;
&lt;td&gt;Finance-led B2B SaaS&lt;/td&gt;
&lt;td&gt;Contact sales&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Stripe Billing&lt;/td&gt;
&lt;td&gt;Subscription, simple plans&lt;/td&gt;
&lt;td&gt;PLG already on Stripe&lt;/td&gt;
&lt;td&gt;0.5% to 0.8% of volume&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Paddle&lt;/td&gt;
&lt;td&gt;Subscription with MoR&lt;/td&gt;
&lt;td&gt;Global self-serve SaaS&lt;/td&gt;
&lt;td&gt;Revenue share&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Metronome&lt;/td&gt;
&lt;td&gt;Pure usage / consumption&lt;/td&gt;
&lt;td&gt;Developer-first usage businesses&lt;/td&gt;
&lt;td&gt;Contact sales&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7o20ayot3cfabccjy74f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7o20ayot3cfabccjy74f.png" width="800" height="494"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's changing in 2026?
&lt;/h2&gt;

&lt;p&gt;The reason this list looks different from a 2022 buyers' guide is that the underlying pricing models have changed - and things have become more popular (&lt;a href="https://www.solvimon.com/glossary/usage-based-pricing" rel="noopener noreferrer"&gt;usage-based pricing&lt;/a&gt;) or less popular (&lt;a href="https://www.solvimon.com/glossary/seat-based-pricing" rel="noopener noreferrer"&gt;seat pricing&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Three years ago, most SaaS companies sold seats. Billing platforms sold subscription lifecycle and the world was happy and tidy.&lt;/p&gt;

&lt;p&gt;As of May 2026 the typical B2B SaaS company has three pricing surfaces in production at once. &lt;a href="https://www.solvimon.com/blog/usage-based-billing-grew-7x-in-a-year" rel="noopener noreferrer"&gt;On Solvimon, most customers have five on average.&lt;/a&gt; A self-serve plan (seats), an API or AI feature (usage or credits), and a custom enterprise contract (negotiated mix). Companies are rightfully pricing on whichever model fits the surface, not picking one.&lt;/p&gt;

&lt;p&gt;That puts pressure on the billing layer because a platform that grew up doing subscriptions has to bolt on usage, while a platform that grew up doing usage has to bolt on subscriptions. The seams show up in the customer experience, the engineering backlog, and the revenue leakage at month-close.&lt;/p&gt;

&lt;p&gt;The platforms that win the next decade will be the ones built native to hybrid pricing, with PSP optionality, multi-entity infrastructure, and a configuration model that doesn't require an engineering ticket for every price change. Solvimon's wedge phrase, "billing and payments for companies that have outgrown their first system," names the buyer this market is producing in volume.&lt;/p&gt;

&lt;p&gt;If you're picking a platform now, pick for where you'll be in 2028, not where you are today.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I evaluated these platforms
&lt;/h2&gt;

&lt;p&gt;The criteria that drove this guide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Pricing model coverage: subscription, usage, credits, outcomes, hybrid combinations&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Metering: real-time ingestion, rating logic, event deduplication&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;CPQ: quote-to-cash, custom contracts, multi-year ramps, tiered discounts&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Global capability: multi-entity, multi-currency, VAT and GST tax engines, FX&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;PSP relationships: locked to one processor, or agnostic&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Configuration model: dashboard, API, CLI, code, MCP&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Revenue reporting: MRR, ARR, NRR, ASC 606 compliance, deferred revenue&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Total cost of ownership: implementation time, engineering lift, pricing&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Buyer evidence: G2, Gartner, customer migration patterns&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is not a Gartner Magic Quadrant. There is no single winner. There are six decision branches and eight platforms that win different ones.&lt;/p&gt;

&lt;h2&gt;
  
  
  FAQs
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What is subscription billing software?
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.solvimon.com/glossary/subscription-management" rel="noopener noreferrer"&gt;Subscription billing&lt;/a&gt; software automates recurring invoicing, payment collection, and revenue recognition across the customer lifecycle. Modern platforms also handle usage metering, CPQ, multi-entity invoicing, and hybrid pricing models that combine subscriptions with usage, credits, and outcomes.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's the difference between subscription billing and usage-based billing?
&lt;/h3&gt;

&lt;p&gt;Subscription billing charges a recurring amount on a defined cycle (monthly, annually). &lt;a href="https://www.solvimon.com/glossary/usage-based-pricing" rel="noopener noreferrer"&gt;Usage-based billing&lt;/a&gt; charges based on &lt;a href="https://www.solvimon.com/glossary/usage-metering" rel="noopener noreferrer"&gt;consumption events&lt;/a&gt; (API calls, tokens, transactions). &lt;a href="https://www.solvimon.com/blog/hybrid-pricing-is-the-default-now-heres-the-data" rel="noopener noreferrer"&gt;Hybrid models&lt;/a&gt; combine both, often with credits or wallets layered on top. Most modern SaaS uses hybrid in some form.&lt;/p&gt;

&lt;h3&gt;
  
  
  How is Solvimon different from Stripe Billing?
&lt;/h3&gt;

&lt;p&gt;Stripe Billing is the billing layer of the Stripe payments ecosystem. Solvimon is PSP-agnostic billing infrastructure that works with &lt;a href="https://www.solvimon.com/integrations/adyen" rel="noopener noreferrer"&gt;Adyen&lt;/a&gt;, &lt;a href="https://www.solvimon.com/integrations/stripe" rel="noopener noreferrer"&gt;Stripe&lt;/a&gt;, or &lt;a href="https://www.solvimon.com/integrations/checkout-com" rel="noopener noreferrer"&gt;Checkout.com&lt;/a&gt;. Stripe Billing is optimized for simple subscription plans on Stripe. Solvimon is optimized for hybrid pricing, multi-entity global billing, and headless monetization.&lt;/p&gt;

&lt;h3&gt;
  
  
  When do SaaS companies typically migrate from Stripe Billing?
&lt;/h3&gt;

&lt;p&gt;The pattern: companies hit the Stripe Billing wall somewhere between $2M and $15M ARR, usually triggered by one of three needs. Hybrid pricing (adding usage to seats). Multi-entity billing (multiple legal entities or currencies). Or an enterprise contract that Stripe Billing's CPQ can't handle.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's headless monetization?
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.solvimon.com/forai/why" rel="noopener noreferrer"&gt;Headless monetization&lt;/a&gt; is the model where billing is configured the way modern frontends are configured. Through APIs, CLIs, code, and MCP servers, not through dashboards. Pricing changes ship as pull requests, with tests, in CI/CD. Engineers stay in their IDE. Finance still gets the dashboard for reporting. Solvimon is the platform built native to this model.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's the best free subscription billing software?
&lt;/h3&gt;

&lt;p&gt;The &lt;a href="https://www.solvimon.com/pricing" rel="noopener noreferrer"&gt;Solvimon Essential plan is free up to $1M&lt;/a&gt; billed annually, including 750K events per month and one billing entity. The &lt;a href="https://www.solvimon.com/forai" rel="noopener noreferrer"&gt;Solvimon for AI plan&lt;/a&gt; extends free usage up to $3M billed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Which billing platform handles multi-entity global SaaS best?
&lt;/h3&gt;

&lt;p&gt;Solvimon and Zuora handle multi-entity global billing natively. Solvimon ships it from day one with built-in VAT, GST, and FX. Zuora handles it through enterprise configuration with longer implementation cycles. Stripe Billing require ssome stitching for multi-entity at scale.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>stripe</category>
      <category>saas</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
