Guide

Shopify subscriptions: the pillar guide for 2026

A high-level map of what 'subscriptions on Shopify' actually means in 2026 — the native APIs, the app layer that sits on top, the four business models that work, what the stack costs, why retention beats acquisition, and when subscriptions are the wrong answer entirely.

14 min readUpdated 21 May 2026By SimpleSubscription Team
On this page (10)
  1. What 'subscriptions on Shopify' means in 2026
  2. The four business models that work on Shopify
  3. The Shopify-native pieces (the foundation)
  4. The app layer — what subscription apps add on top
  5. The merchant journey at a glance
  6. Pricing the app stack — what subscriptions actually cost to run
  7. Retention — why this matters more than acquisition
  8. Operational considerations — fulfillment, support, dunning
  9. Legal and compliance — the overview
  10. When subscriptions are the wrong answer

Subscriptions on Shopify isn't a single product — it's a stack. Shopify ships the underlying primitives (selling plans, subscription contracts, vaulted payment methods, checkout extensions). A subscription app sits on top and provides the orchestration: the widget on the product page, the cron jobs that run renewals, the customer portal, the dunning flow, the analytics. Then there's the business model layer on top of that — subscribe-and-save, curated box, membership, build-a-box — each with different mechanics and different retention curves. This guide is the map. It explains how the pieces fit together, links you into deeper guides for each, and is deliberately broad rather than deep. If you want a step-by-step launch playbook, read the how-to guide. If you want the API details, read the API reference. This page is for understanding the territory before you pick a path through it.

What 'subscriptions on Shopify' means in 2026

Five years ago, running subscriptions on Shopify meant installing Recharge, accepting a parallel checkout flow on a Recharge-hosted domain, and watching your subscription data live outside of Shopify entirely. That's no longer how it works. Since Shopify shipped the native Subscription Contracts API in 2021 and made it the only supported model in 2023, subscriptions are first-class objects inside Shopify itself — the contract, the customer, the payment method, the discount, and every renewal order all live in the same database that powers your one-time orders.

What an app does today is much narrower. It creates selling plans, drops a widget on the product page, runs the renewal cron, sends dunning emails when cards fail, and gives subscribers a portal to manage themselves. The checkout, the payment vaulting, the order objects, and the storefront discounts are all native Shopify. That separation matters because it means switching apps is much less painful than it used to be, your subscription data shows up in Shopify analytics natively, and you don't pay extra checkout fees just because the order is recurring.

Monthly Revenue
$24,580
+12.5%
Active Subs
847
+23
Churn Rate
3.2%
-0.8%
New subscription - Premium Box2m ago
Billing success - $49.005m ago
Churn risk detected - Sarah M.12m ago
The Shopify subscription stack in 2026 — native contracts and checkout at the foundation, app orchestration on top.
Tip
If you're new to the category

The mental model: Shopify owns the contract, the app owns the workflow. The app is software you can replace. The contracts are yours and stay in Shopify either way. Go deeper: how the Subscription Contracts API works.

Shopify owns the subscription contract. The app is the workflow layer on top. Both pieces matter, and they're separable.

The four business models that work on Shopify

Almost every subscription store on Shopify ends up in one of four buckets. The model determines the widget UX, the discount structure, the fulfillment workflow, and the retention curve — picking the right one upfront is the single highest-leverage decision before you install anything.

  • Subscribe-and-save — the customer picks a product, a cadence, and gets a discount for committing. Same SKU every cycle. The dominant model for consumables (coffee, supplements, pet food). Go deeper: launch playbook.
  • Curated box — the merchant picks what ships each cycle, often themed. The product is the experience of opening it. Higher perceived value, faster churn if the curation gets stale.
  • Membership — recurring fee for access (perks, exclusive content, member-only discounts, free shipping) rather than a physical product on a schedule. Often paired with a subscribe-and-save catalog.
  • Build-a-box — the customer assembles each cycle's contents from a curated pool. Highest engagement and best retention of the four, but the most complex to set up and the most fulfillment friction.

Most stores either pick one model or run two in parallel — for example, subscribe-and-save on the hero SKUs plus a curated discovery box for new variants. Membership is often layered on top of either: pay $9/mo to unlock the subscriber discount on top of the catalog. The choice should follow the product: consumables with predictable consumption fit subscribe-and-save naturally, while artisan goods with shifting preferences need the curation of a box or build-a-box to keep subscribers from cancelling out of boredom.

Watch out
Don't force the wrong model

Coffee shops sometimes try to launch a 'curated' coffee box where each month is a different roast, and subscribers cancel because they wanted their usual bag. Apparel brands try subscribe-and-save and subscribers cancel because size and taste shift. Match the model to actual customer behavior, not what looks novel on a pitch deck.

Pick the model that matches how customers naturally consume the product. Subscribe-and-save for predictable repurchase, boxes for curated discovery, membership for ongoing access.

The Shopify-native pieces (the foundation)

Whether you build your own subscription system or install an app, four Shopify primitives are doing the heavy lifting underneath. Knowing what each one does makes every weird edge case later (price mismatches, discount stacking, mixed carts, B2B pricing) much easier to reason about.

  • Selling plans — the recipe for a recurring purchase: billing policy (how often to charge), delivery policy (how often to ship), and pricing policy (the discount applied). Attached to product variants via selling plan groups. Go deeper: selling plans explained.
  • Subscription contracts — created at checkout when a customer buys a subscription. Stores the customer, the payment method, the selling plan, the renewal date, and the line items. Owned by the app that created it (which matters for migrations).
  • Customer payment methods — the vaulted card token. Shopify Payments stores the card; the app never sees raw card data. This is why subscriptions work via Shopify Payments and not arbitrary third-party gateways.
  • Checkout extensions — let apps customize the checkout (e.g., bundle a subscription-only upsell, swap the post-purchase step). Largely optional for a basic subscribe-and-save store.

These pieces work together via a small but well-defined API surface. When a customer subscribes, the app calls subscriptionContractCreate, Shopify stores the contract, and from then on the app schedules renewals by calling subscriptionContractAtomicCreate (the renewal-order primitive) on the appropriate dates. Everything else — the actual charge, the order creation, the inventory deduction, the tax calculation, the discount application — is handled by Shopify natively. Go deeper: the full API surface and what each call does.

Selling plans + subscription contracts + payment methods + checkout extensions. Four primitives, well-defined APIs, all owned by Shopify.

The app layer — what subscription apps add on top

If Shopify ships the primitives, why do you need an app at all? Because the primitives don't include the workflow. Shopify doesn't run the renewal cron, doesn't ship a widget, doesn't email subscribers when their card fails, doesn't give them a portal to skip a delivery, doesn't track MRR or churn. The app is the orchestration layer that turns 'Shopify has selling plans' into 'a working subscription business.'

Different apps put their effort in different places — some prioritize the widget and conversion, some prioritize the portal and retention, some compete on price and operate as a no-frills billing engine. Almost all of them now use Shopify's native Subscription Contracts API under the hood (the few that still run parallel databases are migrating away or losing market share). Go deeper: how the major apps compare.

  • The widget — what customers see on the product page. Drives the subscribe conversion rate.
  • The billing engine — runs the renewal cron, handles retries on failure, manages skip/pause/swap state changes.
  • The customer portal — self-service for subscribers. The single biggest determinant of support load and churn.
  • Dunning — the retry-and-email flow when a card fails. Recovers 5-10% of MRR that would otherwise vanish.
  • Analytics + merchant dashboard — MRR, churn, cohort retention, payment health.
Shopify ships the primitives, the app ships the workflow. Widget, billing cron, portal, dunning, analytics — that's what you're paying for.

The merchant journey at a glance

From an empty store to a working subscription business takes about a week of decisions and roughly an hour of actual technical setup. The technical part is fast because the app handles most of it via theme app extensions; the decisions are slow because picking the wrong cadence, discount, or fulfillment policy is expensive to undo later.

  1. Decide cadence, discount, and which products are subscribable (not all SKUs should be)
  2. Pick an app and install it from the Shopify App Store
  3. Create one or two selling plans (e.g., monthly with 10% off)
  4. Attach selling plans to the right product variants
  5. Add the subscribe widget to the product page via theme editor
  6. Configure the customer portal (branding, allowed actions)
  7. Set up dunning policy (retry schedule, email templates)
  8. Test with a real card in test mode — checkout, renewal, portal, cancel
  9. Disclose auto-renewal terms in cart, checkout, and confirmation email
  10. Go live, monitor first 20 subscribers closely

The end-to-end walkthrough with the operational details (stockout policy, fulfillment spikes, legal disclosure, pricing math) lives in the launch playbook. Go deeper: how to sell subscriptions on Shopify, end to end.

Setup is fast. The decisions before setup are slow. Plan cadence, discount, and fulfillment before you install anything.

Pricing the app stack — what subscriptions actually cost to run

The headline monthly price on the App Store is rarely what you actually pay. Most subscription apps charge a monthly base fee plus a transaction fee on each renewal — and the transaction fee is what dominates the bill once you're past about $5k MRR. Apps that look cheap at install ($19-99/mo base) often become the most expensive line item in your stack at scale.

  • Base monthly fee — typically $39-499/mo depending on the app and tier. Predictable.
  • Transaction fee — often 1-2% of subscription revenue, plus 19-25¢ per renewal. Scales with success. This is where apps quietly take more as you grow.
  • Tiered subscriber pricing — some apps add per-subscriber charges above a low threshold (e.g., free up to 100 subscribers, then $0.10/subscriber/mo). Cheap to start, expensive to grow.
  • Flat-fee apps — a fixed monthly cost regardless of MRR or subscriber count. Cheaper than transaction-fee apps past about $8k MRR. Go deeper: no transaction fee comparison.

Run the math on your 12-month MRR projection, not your install-day number. An app that's $99/mo + 1% looks cheap at $2k MRR ($119/mo total) and brutal at $50k MRR ($599/mo). Past about $8k MRR, a flat-fee app at $79-299/mo typically wins by a wide margin. The structural takeaway: transaction-fee apps optimize for low entry, flat-fee apps optimize for scale — pick the one that matches your trajectory.

Headline price lies. Transaction fees dominate past $5k MRR. Model your year-2 cost before choosing.

Retention — why this matters more than acquisition

Most subscription businesses obsess over the subscribe conversion rate on the product page. That's the wrong lever past month one. A subscriber who stays 6 months is worth roughly 3x a subscriber who stays 2 months, and the difference between those outcomes is almost entirely about retention mechanics — the portal, the cancel flow, the dunning policy, the stockout handling — not the acquisition funnel.

The math: if you spend $25 to acquire a subscriber and they churn after 2 orders, you've paid $25 for $36 of gross profit (assuming $30 AOV, 60% margin). If they stay 6 orders, you've paid $25 for $108. Doubling your retention from 2 to 4 orders is mathematically equivalent to doubling your ad budget at constant CAC — and it costs nothing because the levers are mostly operational.

Checklist
The retention levers that actually move the number
  • Self-service portal — eliminates 'I'll just cancel because I couldn't skip' churn
  • Cancel-save flow — pause and discount offers recover 15-25% of attempted cancels
  • Smart dunning — recovers 60-80% of failed-payment renewals that would otherwise churn passively
  • Stockout policy — skip the renewal, never charge for unshippable inventory
  • Cancel-reason data — the only structured signal you'll have for what to fix

Go deeper: the full retention playbook.

Retention is mostly operational, not creative. Portal + cancel flow + dunning recover more revenue than any acquisition tactic.

Operational considerations — fulfillment, support, dunning

Subscription orders behave differently from one-time orders in three ways that consistently surprise first-time merchants: renewal-day concentration creates fulfillment spikes, recurring charges create predictable support volume (skip, swap, address change), and roughly 5-10% of cards fail every cycle which means dunning isn't optional.

Fulfillment spikes. If most subscribers sign up on the 1st of the month, your renewal volume concentrates on the 1st — you'll see a 200-400% volume spike on a single day. Most 3PLs are set up for steady-state volume and a Monday-morning spike is a real fulfillment risk. Two fixes: spread renewals across the month by offering multiple cadences (weekly + biweekly + monthly), or charge on signup-date anniversary instead of a calendar-date default (most apps support this).

Support volume. Subscription support volume falls into 5 categories: skip next delivery, update payment method, change shipping address, pause, cancel. A self-service portal handles all 5 without a ticket. Stores that launch without a portal typically run 40-60% higher support volume than stores that launch with one.

Dunning. 5-10% of card-on-file charges fail every cycle — expired cards, fraud blocks, temporary holds. Without retries, that's 5-10% of MRR vanishing every month as 'passive churn.' Smart dunning (retry on day 1, 3, and 7 with a branded email each time) recovers most of it. Go deeper: dunning playbook.

Renewal-day spikes, recurring support categories, and 5-10% card failures every month. Plan for all three before launch.

When subscriptions are the wrong answer

Subscription apps make money when you install them. They don't make money telling you not to. So here's the honest view: subscriptions amplify products that customers already want to repurchase. They don't manufacture demand that isn't there, and pushing them on the wrong product can damage the rest of your store's reputation.

Good fit: consumables with predictable repurchase (coffee, supplements, pet food, household), curated discovery products where the experience IS the product (boxes), refills (razor blades, contact lenses), and any product with a known natural consumption interval.

Bad fit: long-replacement-cycle goods (cookware, electronics, furniture), apparel where size and style shift, gift items, artisan goods bought 'for the experience' of choosing them, and high-ticket items where the recurring charge will trigger a customer's monthly statement scan. If a typical customer would think twice about whether to keep the subscription every month, the model is wrong for the product.

Go deeper: when subscriptions are the wrong answer (detailed).

Subscriptions amplify natural repurchase. They can't create it. Match cadence to consumption, not what maximizes MRR on paper.

High-level questions about subscriptions on Shopify

Do I need a Shopify Plus plan to run subscriptions?

No. Subscriptions work on every paid Shopify plan including Basic. The native Subscription Contracts API and selling plans are available across all plans. Plus only adds capabilities at the checkout and B2B layer — neither is required for a standard subscribe-and-save store.

Can I run subscriptions without a subscription app?

Technically yes — Shopify ships the Subscription Contracts API and you can build your own widget, portal, and billing cron against it. In practice, the build is 4-6 months of engineering and you'll be reinventing what apps already do well. Building makes sense for stores past about $100k MRR where the percentage-fee app cost outweighs an in-house team; for everyone else, install an app.

What's the cheapest way to start selling subscriptions on Shopify?

Install a free-tier subscription app (most have free plans up to 100 subscribers or $1-5k MRR), configure one selling plan, attach it to your top-selling consumable, and add the widget via theme editor. Total setup cost: zero. Most stores can validate the model with their first 20 subscribers before paying anything.

Do I need a developer to launch subscriptions?

No. Modern subscription apps install through the Shopify App Store and drop their widget on the product page via theme app extension — no code changes. You'll only need a developer for deep widget customization, custom storefront flows, or integration with non-Shopify systems.

What platforms compete with Shopify for subscription commerce?

WooCommerce (WordPress) with WooCommerce Subscriptions, BigCommerce with subscription apps like ReCharge BigCommerce, Recurly + custom storefront, and standalone subscription-first platforms like Subbly or Cratejoy. Shopify's advantage is the native checkout, the native subscription contracts, and the ecosystem of apps built on the platform — most stores doing under $1M ARR in subscription revenue find Shopify simpler and cheaper than alternatives.

How long does it take to launch a subscription product?

Setup is under an hour. The slow part is the decisions before setup: cadence, discount, which products are subscribable, stockout policy, dunning policy, retention flow, refund policy, and auto-renewal disclosure copy. Most first-time merchants are live within a week if they've already decided the product.

Are subscription apps interchangeable — can I switch later?

Mostly yes. Apps that use Shopify's native Subscription Contracts API store the contracts in Shopify, which means contracts, payment methods, and billing schedules transfer cleanly when you migrate to a different app. Apps that run parallel databases (a shrinking minority) require export/import and may force subscribers to re-enter payment info. Go deeper: <a href="/subscription-migration">subscription migration guide</a>.

What's the difference between a subscription and a membership?

A subscription delivers a physical product on a schedule (subscribe-and-save, curated box). A membership charges a recurring fee for ongoing access — perks, exclusive content, member-only discounts, free shipping — without a physical shipment per cycle. Many stores run both: physical subscriptions for revenue, memberships as a retention layer.

Can I sell digital subscriptions on Shopify?

Yes. Attach a selling plan to a digital product and the renewal charge runs without triggering physical fulfillment. You'll handle the digital delivery (download link, access provisioning, license unlock) via an app or fulfillment service that supports digital orders.

Will subscriptions hurt my SEO or storefront performance?

No, when implemented correctly. The subscribe widget is theme-app-extension JavaScript that loads on product pages only, and a well-built widget adds under 50ms to page render. The renewal cron and webhook traffic happens server-to-server and doesn't touch the storefront at all. Avoid apps that inject large bundles into every page — check Lighthouse scores before and after install.

How much subscription revenue should I expect in the first 90 days?

Highly variable, but a useful baseline: stores with strong consumable products typically see 8-15% of new buyers opting into subscription at the product-page subscribe-and-save widget when offered a 10% discount. At 100 new buyers/week, that's 8-15 new subscribers/week — about 100-180 active subscribers by day 90 if churn is under 10%/month. Stores with poor product-subscription fit see <2% opt-in.

Where do I go next if I'm ready to launch?

Read the <a href="/how-to-sell-subscriptions-on-shopify">end-to-end launch playbook</a>, pick an app from the <a href="/best-shopify-subscription-app">app comparison</a>, and review the <a href="/subscription-retention">retention playbook</a> before going live so your cancel flow and portal are configured from day one — not retrofitted in month three.

The pillar

Read the complete Shopify Subscription App overview

Pricing, every feature, side-by-side comparison, FAQ — the single page that ties all these guides together.

Go to the pillar

Build your subscription business on Shopify

Install SimpleSubscription, follow the launch playbook, and have your first subscriber inside the week.

Install on Shopify

Start free · 14-day trial on paid plans · Zero transaction fees · Free migration