orders / #327
- userId
-
Jamil Mayer @jamil.mayer
- status
- shipped
- currency
- USD
- subtotal
- 1336.72
- tax
- 116.96
- shipping
- 0
- total
- 1453.68
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#327
#327
Small
orders/327 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/327" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/327"
);
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/327"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/327"
)
order = res.json() {
"id": 327,
"userId": 233,
"status": "shipped",
"currency": "USD",
"subtotal": 1336.72,
"tax": 116.96,
"shipping": 0,
"total": 1453.68,
"placedAt": "2026-01-01T20:44:46.728Z",
"shippedAt": "2026-01-03T00:11:40.829Z",
"deliveredAt": null,
"createdAt": "2026-01-01T20:44:46.728Z",
"updatedAt": "2026-01-03T00:11:40.829Z"
}