FileExamples
JSON200 rows

Sample E-commerce Dataset — JSON

Download a free JSON file containing a structured e-commerce dataset with nested products, orders, and customer records. Each product includes variants, images, and pricing tiers. This dataset mirrors real API response structures used by Shopify, WooCommerce, and custom e-commerce backends. Ideal for testing frontend rendering, API mocking, and data transformation pipelines.

Data Structure Preview

{
  "products": [
    {
      "id": "prod_001",
      "name": "Wireless Mouse",
      "price": 29.99,
      "variants": [{"color": "black", "sku": "WM-BLK"}],
      "in_stock": true
    }
  ],
  "orders": [...],
  "customers": [...]
}

Fields

products[]orders[]customers[]product.variants[]order.items[]

Common Use Cases

  • Testing nested JSON rendering in frontends
  • Mocking e-commerce API endpoints
  • Validating JSON schema with nested structures
  • Testing data transformation and normalization
  • Prototyping headless commerce frontends

Frequently Asked Questions

What is the JSON structure?

The file is a single JSON object with three top-level arrays: products (with nested variants), orders (with nested line items), and customers.

Can I use this with GraphQL?

Yes. The nested structure is well-suited for GraphQL resolver testing and schema validation.