E-commerce orders with line items, pricing, shipping address, and fulfillment status. Free to use, no attribution required — copy it, download it, or open it directly in the JSON Formatter. Runs entirely in your browser.
[
{
"id": "ord_001",
"userId": "usr_abc123",
"status": "delivered",
"items": [
{
"sku": "LAPTOP-PRO-15",
"name": "Pro Laptop 15\"",
"quantity": 1,
"unitPrice": 1299.99
},
{
"sku": "MOUSE-WIRELESS",
"name": "Wireless Mouse",
"quantity": 1,
"unitPrice": 49.99
}
],
"subtotal": 1349.98,
"tax": 121.5,
"shipping": 0,
"total": 1471.48,
"shippingAddress": {
"line1": "123 Main St",
"city": "San Francisco",
"state": "CA",
"zip": "94105",
"country": "US"
},
"createdAt": "2024-01-05T10:00:00Z",
"deliveredAt": "2024-01-08T14:30:00Z"
},
{
"id": "ord_002",
"userId": "usr_def456",
"status": "shipped",
"items": [
{
"sku": "KEYBOARD-MECH",
"name": "Mechanical Keyboard",
"quantity": 1,
"unitPrice": 149.99
},
{
"sku": "CABLE-USB-C",
"name": "USB-C Cable 2m",
"quantity": 2,
"unitPrice": 12.99
}
],
"subtotal": 175.97,
"tax": 15.84,
"shipping": 5.99,
"total": 197.8,
"shippingAddress": {
"line1": "456 Oak Ave",
"city": "Austin",
"state": "TX",
"zip": "78701",
"country": "US"
},
"createdAt": "2024-01-10T14:22:00Z",
"deliveredAt": null
},
{
"id": "ord_003",
"userId": "usr_abc123",
"status": "processing",
"items": [
{
"sku": "MONITOR-4K-27",
"name": "27\" 4K Monitor",
"quantity": 1,
"unitPrice": 599.99
}
],
"subtotal": 599.99,
"tax": 54,
"shipping": 0,
"total": 653.99,
"shippingAddress": {
"line1": "123 Main St",
"city": "San Francisco",
"state": "CA",
"zip": "94105",
"country": "US"
},
"createdAt": "2024-01-15T09:00:00Z",
"deliveredAt": null
},
{
"id": "ord_004",
"userId": "usr_ghi789",
"status": "cancelled",
"items": [
{
"sku": "HEADPHONES-NC",
"name": "Noise Cancelling Headphones",
"quantity": 1,
"unitPrice": 349.99
}
],
"subtotal": 349.99,
"tax": 31.5,
"shipping": 9.99,
"total": 391.48,
"shippingAddress": {
"line1": "789 Pine St",
"city": "Seattle",
"state": "WA",
"zip": "98101",
"country": "US"
},
"createdAt": "2024-01-12T16:00:00Z",
"deliveredAt": null
},
{
"id": "ord_005",
"userId": "usr_def456",
"status": "delivered",
"items": [
{
"sku": "WEBCAM-HD",
"name": "HD Webcam 1080p",
"quantity": 1,
"unitPrice": 89.99
},
{
"sku": "LIGHT-RING-12",
"name": "12\" Ring Light",
"quantity": 1,
"unitPrice": 39.99
},
{
"sku": "CABLE-USB-C",
"name": "USB-C Cable 2m",
"quantity": 1,
"unitPrice": 12.99
}
],
"subtotal": 142.97,
"tax": 12.87,
"shipping": 0,
"total": 155.84,
"shippingAddress": {
"line1": "456 Oak Ave",
"city": "Austin",
"state": "TX",
"zip": "78701",
"country": "US"
},
"createdAt": "2024-01-02T11:30:00Z",
"deliveredAt": "2024-01-04T16:00:00Z"
}
]