Ecommerce Order Generator
LiveFake 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.
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).
How it works
- Pick the region (BR or US) and how many orders to generate.
- Optionally set a seed for reproducible output.
- Press Generate, then Copy, Download JSON or Download CSV.
Example output
[
{
"id": "623acfe6-c6e2-43c0-8555-fbbcd0d0aae7",
"orderNumber": "ORD-527930",
"status": "delivered",
"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": "credit_card",
"createdAt": "2026-03-03T04:46:48.547Z"
},
{
"id": "c9a75a41-d679-4b4f-962d-b721103b7103",
"orderNumber": "ORD-710500",
"status": "processing",
"customer": {
"name": "Rafael Gomes Vieira",
"email": "[email protected]"
},
"items": [
{
"productId": "8f9051f4-8142-4395-a59a-33d54d57b6b7",
"name": "Stark Vintage Desk Lamp",
"sku": "DES-311954",
"quantity": 3,
"unitPrice": 3002.98,
"total": 9008.94
}
],
"subtotal": 9008.94,
"discount": 900.89,
"shipping": 20.47,
"taxes": 0,
"total": 8128.52,
"currency": "BRL",
"paymentMethod": "pix",
"createdAt": "2026-05-09T11:38:54.069Z"
}
]API endpoint
curl "https://codetoolshub.dev/api/v1/commerce/order?count=3"