orders / #402
- userId
-
Queen Lubowitz @queen.lubowitz76
- status
- shipped
- currency
- USD
- subtotal
- 1600.95
- tax
- 140.08
- shipping
- 0
- total
- 1741.03
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#402
#402
Small
orders/402 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/402" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/402"
);
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/402"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/402"
)
order = res.json() {
"id": 402,
"userId": 28,
"status": "shipped",
"currency": "USD",
"subtotal": 1600.95,
"tax": 140.08,
"shipping": 0,
"total": 1741.03,
"placedAt": "2026-04-26T11:59:12.645Z",
"shippedAt": "2026-04-28T09:59:05.941Z",
"deliveredAt": null,
"createdAt": "2026-04-26T11:59:12.645Z",
"updatedAt": "2026-04-28T09:59:05.941Z"
}