E-commerce store
Shopify-style product catalog with categories, cart, and order management. 500 products across 24 categories, with seeded orders.
Build an online store in Draftbit →Showcase / E-commerce store
Shopify-style product catalog with categories, cart, and order management. 500 products across 24 categories, with seeded orders.
Build an online store in Draftbit →Click into any collection to see its schema, sample records, and API reference.
Fetch products in the language of your choice.
curl -sS \
"https://example-data.com/api/v1/products?limit=25"const res = await fetch(
"https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = await res.json();import type { Product, ListEnvelope } from "https://example-data.com/types/products.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Product>;import requests
res = requests.get(
"https://example-data.com/api/v1/products",
params={"limit": 25},
)
data = res.json()