Zephiel API

E-commerce Catalog

Free tier

Products, variants, carts, and orders behind one REST resource model.

4.712 reviewsby Northwind Data14k subscribers
catalogproductsorderscartheadless

Starts at

$23/mo

Choose a plan

Create a free account to subscribe.

Latency
96ms
Uptime
99.96%
Endpoints
5

About this API

A headless commerce backend you can point any storefront at. Model products with unlimited variants and option axes, track inventory across locations, build carts with promotion and tax rules applied server-side, and take orders through to fulfilment — all without running a commerce platform yourself.

Common use cases

Headless storefronts
Mobile shopping apps
B2B ordering portals
Marketplace backends

Quickstart

Every Zephiel API uses the same base URL, the same key header, and the same error envelope.

curl -X GET "https://zephiel.com/api/v1/ecommerce-catalog/products" \
  -H "X-Zephiel-Key: $ZEPHIEL_API_KEY" \
  -H "Accept: application/json"

Example response

{
  "id": "prod_9f21",
  "title": "Merino Crew Sweater",
  "status": "active",
  "variants": [
    { "sku": "MCS-NVY-M", "price": 89.0, "inventory": 42 },
    { "sku": "MCS-NVY-L", "price": 89.0, "inventory": 17 }
  ],
  "currency": "USD"
}

Related APIs in E-commerce & Multistore