Skip to content
580+ endpoints · live in production

The commerce backend behind a store admin your team will actually enjoy.

StoreFlux is a full headless e-commerce platform: a REST API with 61+ commerce modules, and an 85-page admin dashboard to run it all — products, orders, payments, marketing, analytics. Build your own storefront against the API, or let us build one for you.

Headless REST API 85-page admin dashboard Bring your own storefront
No credit card required Free tier forever Live in under 5 minutes Cancel anytime
admin.storeflux.store/dashboard

Dashboard

Good morning · store performance overview

$1,238.90

Total revenue

13

Total orders

$95.30

Avg. order

100

Active products

Revenue & Orders

0

Commerce modules

0

API endpoints

0

Admin pages

0

Starting price

The product

Everything a real store needs. Not a starter kit.

Every module below shipped, tested, and running the real admin dashboard shown throughout this page — not a roadmap.

Products & catalog

Variants, bundles, digital products, collections, bulk import — a catalog engine that scales past a spreadsheet.

Product
Status
Price
Stock
PulseTrack Heart Rate Strap
Active
$49.99
16 (1 var)
RidgeLine 4-Person Tent
Active
$219.99
24 (1 var)
SummitGrip Climbing Harness
Active
$89.99
44 (2 var)

Real analytics

Cohorts, RFM, CLV, funnels — not just a revenue number.

This month

$1,238.90

Payments, built in

Stripe and PayPal, tokenized client-side. Manual and COD flows for the rest.

Orders & fulfillment

Full lifecycle tracking, multi-warehouse inventory, returns and refunds.

Marketing suite

Coupons, gift cards, promotions, reviews, and social/ad integrations.

B2B & loyalty

Company accounts, tiered pricing, points and referral programs — no paid app required.

Multi-tenant, multi-currency

Run any number of stores from one platform, each isolated at the database layer.

The admin dashboard

85 pages. One dashboard.
Nothing to configure blind.

Every module — catalog, orders, marketing, payments, developer tools — lives in a single, fast, keyboard-friendly admin panel. Not a config file. Not a support ticket.

  • Organized navigation

    14 clearly labeled sections — catalog, orders, marketing, payments, settings, developer — no hunting.

  • Real-time by default

    Order and inventory events push live over WebSockets — no refresh button to hit.

  • Branded to your store

    Your logo and accent color apply across the whole admin shell automatically.

Explore the live demo →
admin.storeflux.store/products

Products

100 products

+ New product
Product
Status
Price
Category
BasePeak 2-Person Tent
Active
$149.99
Sports
GripMax Weightlifting Gloves
Active
$24.99
Sports
PowerLift Weightlifting Belt
Active
$59.99
Sports
TrainDay Gym Duffel Bag
Active
$54.99
Sports
Two ways to launch

Choose how you build.

Full control with the API, or a done-for-you storefront. Same backend either way.

For developers

Build it yourself

Full API access. Build your storefront in Next.js, React, Vue, Flutter — anything. 580+ REST endpoints, interactive docs, CORS enabled for any origin.

quickstart.ts
# point it at your store slug
npm install @storeflux/sdk

import { createClient } from '@storeflux/sdk';
const store = createClient({ slug: 'my-shop' });
# public, anonymous, CORS-enabled
GET /api/public/stores/my-shop/products?sortBy=best_selling

const { data } = await store.products.list();
# checkout creates the order; payment is a separate call
POST /api/public/stores/my-shop/cart/checkout
POST /api/payments/stripe/create-intent
White-glove

We build it for you

Our team designs and ships a fully custom, branded storefront connected to your backend. You manage products and orders — we handle the rest.

  1. 1

    Design & build

    Branded storefront, tailored to your catalog

  2. 2

    Connect & configure

    Payments, shipping, and admin training included

  3. 3

    Launch & support

    We stay on for go-live and beyond

Get a quote → Typically 2–3 weeks to launch
Not a demo video

This is a real request.

Hit our live demo store's public product API right from this page. No signup, no proxy, straight from api.storeflux.store.

  • No auth required

    Public product endpoints are open — no API key, no signup form.

  • Real production data

    This hits the same demo store's database that powers the storefront above.

  • CORS enabled for any origin

    Call it from your own frontend on localhost or any domain, today.

GET api.storeflux.store/api/public/stores/demo-store/products
curl "https://api.storeflux.store/api/public/stores/demo-store/products?pageSize=5&sortBy=best_selling"
const res = await fetch('https://api.storeflux.store/api/public/stores/demo-store/products?pageSize=5&sortBy=best_selling');
const { data } = await res.json();
import requests

r = requests.get("https://api.storeflux.store/api/public/stores/demo-store/products", params={"pageSize": 5, "sortBy": "best_selling"})
data = r.json()
Response

Click Run Request to fetch real, live data from the demo store's public API.

Under the hood

One API. Any storefront.
Built for scale.

Multi-tenant from the database up: Postgres row-level security isolates every store, Valkey caches hot reads, S3 serves every asset.

Your storefronts

Web (Next.js / React / Vue)
Mobile (iOS / Android)
POS / custom clients

StoreFlux API

580+ REST endpoints, JWT auth, RLS-isolated

Managed infrastructure

PostgreSQL, per-tenant RLS
Valkey, sub-ms cache layer
AWS S3, images & assets
Try it right now

See it in action.

Explore the full admin dashboard and storefront with demo credentials. No signup required.

Admin panel

Full store management

Email

owner@demo-store.local

Password

Owner@1234

Open admin panel

Customer storefront

Shopping experience

Email

customer@demo-store.local

Password

Customer@1234

Open storefront
Verified, not promised

Security you can verify.
Not just promise.

No vague "bank-level security" marketing copy. Here's exactly what protects your store and your customers' data, mechanism by mechanism.

Database-level tenant isolation

Postgres Row-Level Security enforces tenant boundaries at the database layer, not just application code. It's architecturally impossible for one store's queries to touch another's rows.

Postgres RLS · policy per table

Encrypted gateway secrets

Stripe and PayPal API keys are encrypted at rest with a dedicated secret protector. Never stored as plain text, even for our own engineers to read.

Encrypted at rest · zero plaintext

PCI-safe payment tokenization

Card numbers never touch our servers. Stripe Elements and PayPal's SDK tokenize payment details client-side. We only ever see a payment intent ID.

Card data never hits our servers

Hardened authentication

Passwords hashed with PBKDF2 at 350,000 iterations. Short-lived 15-minute access tokens with rotating refresh tokens, replay detection, and lockout after repeated failed logins.

PBKDF2-SHA256 · 350k iterations

Idempotent payments & refunds

Distributed locking plus gateway idempotency keys mean a double-click or a network retry can never double-charge a customer or double-issue a refund.

Per-payment distributed lock

Immutable audit logging

Every admin action — who changed what, before and after, IP and timestamp — is recorded to a queryable, tamper-evident audit log built into every plan.

Every plan · no add-on required
The honest comparison

Built different from
the app-store platforms.

Legacy platforms nickel-and-dime you with paid apps for features that should just work. We built it all in, from day one.

Zero transaction fees

We never take a cut of your sales. What you charge is what you keep — only your payment processor's rate applies.

No app-store tax

B2B, loyalty, analytics, GDPR, multi-currency — all included. No stack of paid apps to bolt on.

Truly headless

580+ endpoints from day one, on every plan. Build in Next.js, React, Vue, or Flutter — no templating lock-in.

Launch in days

Skip months of backend work. 61+ commerce modules are already built and waiting.

StoreFlux vs. Shopify

Where your money actually goes.

A transparent, feature-by-feature comparison — no fine print.

  StoreFlux Shopify
Pricing
Starting price$12/mo$39/mo (Basic)
Platform transaction feesNone, everUp to 2% extra if not using Shopify Payments
Commerce & developer experience
Headless API accessEvery planRequires Hydrogen + higher-tier plans
Custom storefront frameworkAny (React, Vue, Next.js, Flutter…)Liquid, or Hydrogen (Plus tier)
Real-time WebSocket eventsIncludedNot natively supported
Growth features
B2B / wholesale accountsIncludedAdvanced plan or paid app
Advanced analytics (cohort, RFM, CLV)IncludedPaid app required
Loyalty & referral programIncludedPaid app required
GDPR / data export toolsIncludedPaid app required

Shopify pricing shown is publicly listed monthly-billing pricing as of 2026 and may change. Verify current rates at shopify.com. StoreFlux pricing is exact and guaranteed for the term you sign up for.

Simple, transparent

One price. Everything included.

No hidden fees. No per-transaction charges. Choose monthly or save with annual billing.

Monthly

Pay as you go, cancel anytime

$12/store/month
  • All 61+ commerce modules
  • Unlimited products & orders
  • 580+ API endpoints
  • Full admin dashboard (85 pages)
  • Advanced analytics suite
  • Real-time WebSocket events
  • Payments (Stripe + PayPal)
Get started →

Need us to build your store?

Our team will design and develop your complete storefront: custom branded, mobile responsive, SEO optimized, and connected to our platform. Contact us for a quote.

Contact us for custom build →
Questions

Frequently asked questions

Everything you need to know before getting started.

Getting started

What's the difference between "Build Yourself" and "We Build For You"?+

"Build Yourself" gives you full API access — build your own frontend consuming our 580+ REST endpoints. "We Build For You" means our team designs and develops a complete custom storefront connected to our backend. Both include the same powerful backend and admin dashboard.

Can I try it before I pay?+

Absolutely. The live demo above gives you full access to the admin panel, storefront, and API docs with real demo data. You can also register a free account — no credit card required to start.

What frameworks can I use for my storefront?+

Any. Our platform is headless-first with REST APIs and CORS enabled for any origin. Build with Next.js, React, Vue, Angular, Svelte, Flutter, React Native, or plain HTML/JS.

Billing & plans

What's included in the $12/month or $100/year plan?+

Everything. All 61+ modules, unlimited products, orders, and customers, advanced analytics, payment integrations, real-time events, webhooks, API keys, gift cards, loyalty programs, GDPR tools. No feature gates or add-on charges.

How many stores can I run?+

As many as you need. Each store is billed independently: $12/month or $100/year per store. There's no upper limit.

Security & payments

Is my data isolated from other stores?+

Yes. The platform uses a multi-tenant architecture with database-level isolation (Postgres Row-Level Security) enforced on every query. It's architecturally impossible for one store to access another's data.

Do you support Stripe and PayPal?+

Yes. Both are fully integrated with payment intent creation, webhook handling, refund processing, and are configurable per-store from the admin panel. Manual payment recording is also supported.

Is my customers' payment data safe?+

Yes. Card numbers are tokenized client-side by Stripe or PayPal — our servers never see raw card data. Gateway API keys are encrypted at rest, and every payment/refund uses idempotency keys and distributed locking to prevent duplicate charges. See Security for the full breakdown.

Get in touch

Let's talk about your store

Questions about pricing, a custom build, or just want a demo walkthrough? Send us a message — a real person reads every one.

Response time

Usually within one business day

Platform running · All systems operational

Ready to launch
your store?

61+ modules. 580+ API endpoints. 85 admin pages. Everything you need to run a world-class e-commerce operation.

Starting at $12/month or $100/year

No credit card required. Full platform access. Cancel anytime.