Now in Public Beta

AI-Powered
Commerce Platform

Build, launch, and scale your commerce business with intelligent APIs. Headless architecture, multi-currency support, AI-driven pricing, and real-time analytics -- all from a single platform.

Everything you need to sell online

A modular, extensible commerce engine built for developers who demand performance, flexibility, and intelligence.

Headless API

RESTful and GraphQL APIs designed for any frontend. Build custom storefronts with complete flexibility and zero vendor lock-in.

Multi-Currency

Native support for 100+ currencies with real-time exchange rates. Localized pricing and tax calculation built in.

AI Pricing

Machine learning models that optimize pricing in real time. Maximize revenue with dynamic pricing strategies and demand forecasting.

Real-time Analytics

Live dashboards with conversion funnels, cohort analysis, and revenue attribution. Make data-driven decisions instantly.

Storefront Builder

Pre-built, customizable storefront templates powered by Next.js. Launch a production-ready store in minutes, not months.

Admin Dashboard

Full-featured admin panel for order management, inventory, customers, and settings. Extensible with custom widgets and views.

Developer-first API

Clean, predictable APIs that do exactly what you expect. Create products, manage inventory, process payments, and leverage AI pricing -- all with a few lines of code.

commerce.ts
// Create a product with the Hanzo Commerce API
const product = await hanzo.products.create({
  title: "Premium Wireless Headphones",
  handle: "premium-wireless-headphones",
  status: "published",
  variants: [
    {
      title: "Matte Black",
      prices: [
        { amount: 29900, currency_code: "usd" },
        { amount: 27900, currency_code: "eur" },
      ],
      manage_inventory: true,
      inventory_quantity: 500,
    },
  ],
})

// AI-optimized pricing suggestion
const pricing = await hanzo.ai.pricing.optimize({
  product_id: product.id,
  strategy: "maximize_revenue",
  constraints: { min_margin: 0.35 },
})

Ready to build?

Start building your commerce platform today. Free during beta -- no credit card required.