orders / #106
- userId
-
Sarah West @sarah.west
- status
- cancelled
- currency
- USD
- subtotal
- 1437.22
- tax
- 125.76
- shipping
- 0
- total
- 1562.98
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#106
#106
Small
orders/106 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/106"
);
const order = await res.json();import type { Order } from "https://example-data.com/types/orders.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/orders/106"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/106"
)
order = res.json() {
"id": 106,
"userId": 217,
"status": "cancelled",
"currency": "USD",
"subtotal": 1437.22,
"tax": 125.76,
"shipping": 0,
"total": 1562.98,
"placedAt": "2025-07-25T14:23:58.930Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-07-25T14:23:58.930Z",
"updatedAt": "2025-07-25T14:23:58.930Z"
}