Industry
Crypto Payment Gateways for SaaS and Subscriptions
Recurring billing is the weakest part of crypto payments. Chains have no pull mechanism, so nothing can debit a customer on a schedule the way a card can. Providers solve it with prepaid balances, wallet allowances or reminders, and each approach changes your churn in a different way.
On this page
Why is recurring billing so hard here?
Because the payment model is inverted. A card subscription works because the merchant holds a credential that lets it pull money on a schedule, with the customer’s consent recorded once at signup.
No public chain has that primitive. A payment is a transaction the holder of the keys signs, and nobody else can sign it for them. This is the same property that removes chargebacks, and you cannot have one without the other.
What do providers do instead?
Prepaid balance. The customer tops up an account with several months of credit and the service draws down against it. Simple, reliable, and it moves the whole subscription decision to a single larger payment at the start, which accepting crypto payments covers from the checkout side.
Wallet allowance. On some networks a customer can sign an approval letting a contract move a bounded amount. This is the closest thing to a card mandate and it works only where both the chain and the customer’s wallet support it, which is a narrower set than the marketing suggests.
Scheduled invoice. The provider sends a payment request each cycle and the customer pays it. Universally supported and the worst for churn, because every cycle is a fresh decision.
The three are not interchangeable, and providers describe all three as recurring billing. Ask which one you are buying.
What does this do to your metrics?
Involuntary churn falls, because there is no card to expire or get declined, and that is a real and underrated gain. Voluntary churn rises, because each cycle asks the customer to act.
Net effect depends on your price point. High value annual contracts do well on prepaid credit. Small monthly consumer subscriptions do badly on every one of the three mechanisms, and are the case where crypto billing genuinely does not fit yet.
What should you build?
Dunning that assumes non-payment is normal rather than exceptional. With card billing a failed charge is an error state, and with crypto a late payment is Tuesday. Give the customer a longer grace period than you would on cards, and make paying trivially easy from the reminder itself.
Treat the webhook path as the source of truth for entitlement, and reconcile independently. A subscription that lapses because a callback was lost is a support ticket and a refund.
Which providers document it?
Several in the catalogue list recurring billing as a feature. The card records what each one publishes, and the mechanism behind the label is the question to take into the sales conversation.
What to build around the billing limitation
Assume non-payment is the normal state rather than an exception, and design the dunning accordingly. A card subscription treats a failed charge as an error; a crypto subscription treats a late payment as Tuesday. Longer grace periods, gentler messaging, and a payment link in the reminder that takes one tap to complete.
Then make renewal as close to frictionless as the rail allows. Prepaid credit converts twelve decisions into one. A stored allowance, where the chain and the wallet support it, converts them into zero. Both are worth engineering effort in a way that a better dunning email is not.
The entitlement question
Treat the webhook as the source of truth for access, and reconcile independently on a schedule. A subscription that lapses because a callback was lost is a support ticket, a refund, and a customer who now distrusts the billing.
The webhook guide covers the handler requirements. The one specific to subscriptions is that entitlement should fail open for a short window rather than closed: a customer who paid and whose confirmation is delayed should not lose access while your systems catch up.
Who this actually suits
Businesses with annual contracts, high ticket values, or customers who already transact in crypto. In those cases prepaid credit is not a workaround, it is how the customer wanted to pay anyway.
Small monthly consumer subscriptions remain the weakest fit in this whole index, and it is worth saying so rather than selling a workaround as a solution. If that is your model, the honest answer is that crypto billing costs you more in churn than it gains you in reach.
Where to go next
The webhook guide covers entitlement handling, which matters more for subscriptions than for one-off sales. The catalogue records which providers document recurring billing, and the mechanism behind the label is the question to take into the conversation.
Which providers accept this vertical?
Providers below name this vertical on their own public pages. That is weaker than an underwriting decision and stronger than a guess, and it is the most any index can verify without applying.
Read next
Questions merchants ask
Can you take recurring payments in crypto?
Not in the way a card subscription works, because no chain lets a merchant pull funds from a customer without an action from that customer. What providers offer instead is prepaid credit, a signed spending allowance, or a scheduled invoice the customer pays each cycle.
Which providers support crypto subscriptions?
Several document recurring billing, and the mechanism differs enough between them that the label is not comparable. Ask which of the three approaches they use before treating two providers as equivalent.
What happens to churn?
It rises against card billing, because every cycle requires a customer action rather than a silent renewal. Prepaid annual credit is the usual mitigation and it moves the problem to acquisition rather than removing it.
Can I offer a free trial with crypto billing?
Yes, and the conversion step at the end is harder than with cards because nothing charges automatically. Prepaid credit at signup avoids the problem by making the first payment part of the decision the customer already made.
- Published with the index.