Chat on WhatsApp

Wine club + spirits subscription, ReCharge vs Bold vs Skio?

Subscriptions are huge for alcohol DTC, 50%+ of revenue for Winc, Naked Wines, Flaviar. Three providers I’ve shipped with Magento:

  • ReCharge, largest, best integrations, native Magento extension (via Magento Marketplace). $99, $499/mo + 1.25-1.65% of subscription revenue. Best for wine clubs at $500k, $10M run-rate. Customer portal is the strongest (skip, swap, pause, change cadence). Handles age-gate re-verification annually.
  • Bold Subscriptions, older codebase, more customization potential, less polish than ReCharge. $49, $199/mo. Best for brands who need custom subscription logic (e.g. allocation-based wine clubs where members get priority on limited releases).
  • Skio, newer entrant, Shopify-first but Magento integration via API. SMS-driven re-engagement (text-to-skip, text-to-swap). $150, $500/mo + revenue share. Best for younger-demo brands (hard seltzer, RTD).

Architecture pattern: initial sign-up triggers age-gate (Veratad / AgeChecker.net), customer enters payment + ship-to. Recurring charge runs on day-X cron → Magento creates new order with subscription cart contents → carrier ships with adult-sig service. Annual age-gate re-verification (cron flags subs older than 365 days for re-check on next renewal). State-matrix check on every renewal (if customer moved to a banned state, pause the sub and email them).

Common gotcha: subscription billing must respect state ABC license expiry. If your TX ABC license lapses, all TX subs need to auto-pause until renewed. Build this into the cron, not the customer service inbox.

Was this helpful?