CodeToolsHub.dev

Ecommerce Order Generator

Live

Fake orders with items, totals, taxes and status.

All generated data is fictional and intended for development, testing, QA, prototyping, and automation only. Do not use it for fraud, impersonation, or illegal activity.

Configuration

Output

Configure the options and press Generate to produce output.

About this tool

Build realistic order payloads for testing carts, checkouts, dashboards and reporting. Totals reconcile (subtotal + shipping + taxes − discount), and the region selector switches currency and payment methods (PIX/boleto for BR, cards/PayPal for US).

Example output

[
  {
    "id": "ec5b4062-3acf-4e6c-ae23-c04555fbbcd0",
    "orderNumber": "ORD-849400",
    "status": "pending",
    "customer": {
      "name": "Beatriz Alves Freitas",
      "email": "[email protected]"
    },
    "items": [
      {
        "productId": "bef6df7e-cf4c-4de5-a6e5-b52b6af99f44",
        "name": "Globex Eco Sunglasses",
        "sku": "SUN-176259",
        "quantity": 1,
        "unitPrice": 3732.95,
        "total": 3732.95
      },
      {
        "productId": "19f6c56e-bed5-4bc7-8d38-a00484d20df6",
        "name": "Cyberdyne Vintage Speaker",
        "sku": "SPE-814346",
        "quantity": 1,
        "unitPrice": 3470.45,
        "total": 3470.45
      },
      {
        "productId": "c22131e7-e4b2-4c29-b812-191915c0b999",
        "name": "Vandelay Essential Sunglasses",
        "sku": "SUN-423494",
        "quantity": 3,
        "unitPrice": 3392.62,
        "total": 10177.86
      }
    ],
    "subtotal": 17381.26,
    "discount": 1911.94,
    "shipping": 0,
    "taxes": 0,
    "total": 15469.32,
    "currency": "BRL",
    "paymentMethod": "boleto",
    "createdAt": "2026-02-11T03:54:48.201Z"
  },
  {
    "id": "175a97d5-4c0d-4969-ba74-946aca444c6b",
    "orderNumber": "ORD-803864",
    "status": "processing",
    "customer": {
      "name": "Bianca Barbosa Dias",
      "email": "[email protected]"
    },
    "items": [
      {
        "productId": "a38dda8f-9051-4f48-9423-95a59a33d54d",
        "name": "Initech Wireless Sandals",
        "sku": "SAN-346374",
        "quantity": 3,
        "unitPrice": 564.26,
        "total": 1692.78
      },
      {
        "productId": "38051548-8966-440e-8d34-ee9506ea3833",
        "name": "Acme Wireless Phone Case",
        "sku": "PHO-162502",
        "quantity": 2,
        "unitPrice": 4094.02,
        "total": 8188.04
      }
    ],
    "subtotal": 9880.82,
    "discount": 0,
    "shipping": 29.29,
    "taxes": 0,
    "total": 9910.11,
    "currency": "BRL",
    "paymentMethod": "pix",
    "createdAt": "2026-05-04T20:08:35.428Z"
  }
]

API endpoint

curl "https://codetoolshub.dev/api/v1/commerce/order?count=3"
API

Frequently asked questions

Do the totals add up?
Yes — subtotal is the sum of line totals, and the order total reconciles shipping, taxes and discount.

Related tools