E-commerce

Practical JSON for products, carts, orders, payments, and stock snapshots.

5 examplesDefault difficulty: intermediate

Explore sibling categories

Search real-world JSON examples by category, preview structure instantly, and hand off any example directly into the JSON toolchain.

Categories

Browse curated example families by use case.

5 examplesE-commerce
beginnerE-commerce

A practical catalog product shape with pricing, images, and inventory status.

Use this for product APIs, storefront cards, search indexes, and merchandising tools.

Open detail page3 key notes
intermediateE-commerce

A cart payload with line items, summary totals, and fulfillment hints.

Use this for cart APIs, frontend state, and checkout prototypes.

Open detail page3 key notes
intermediateE-commerce

A post-checkout order shape that captures status, payment, and line-level detail.

Use this for order APIs, dashboards, warehouse systems, and customer order history.

Open detail page3 key notes
intermediateE-commerce

An event-style commerce payload for refunds, settlements, and support timelines.

Use this for payment webhooks, order timelines, or financial event logs.

Open detail page3 key notes
intermediateE-commerce

A stock-oriented JSON example for inventory reporting and low-stock alerts.

Use this for stock syncs, nightly exports, or warehouse dashboards.

Open detail page3 key notes
E-commerce

Product Record JSON Example

A practical catalog product shape with pricing, images, and inventory status.

Use this for product APIs, storefront cards, search indexes, and merchandising tools.

Important keys are documented separately below so the copied JSON stays valid and production-safe.
1{
2 "productId": "prd_4201",
3 "sku": "TSHIRT-BLK-M",
4 "name": "Performance Tee",
5 "price": 29.99,
6 "currency": "USD",
7 "inStock": true,
8 "imageUrl": "https://cdn.example.com/products/performance-tee-black.jpg"
9}

FAQ

What kind of e-commerce JSON examples are included here?+
Practical JSON for products, carts, orders, payments, and stock snapshots. Each sample is valid JSON and comes with a real-world use case plus important key notes.
Can I copy these examples directly into my app or docs?+
Yes. The exported JSON stays comment-free and valid, so you can copy or download it directly for tests, mocks, or documentation.
Can I inspect the schema and nested structure first?+
Yes. Every example in this category can be viewed as raw JSON, tree view, and auto-generated schema before you copy it.