orders / #407
- userId
-
Douglas Frami @douglas.frami
- status
- shipped
- currency
- USD
- subtotal
- 1061.56
- tax
- 92.89
- shipping
- 0
- total
- 1154.45
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#407
#407
Small
orders/407 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/407" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/407"
);
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/407"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/407"
)
order = res.json() {
"id": 407,
"userId": 148,
"status": "shipped",
"currency": "USD",
"subtotal": 1061.56,
"tax": 92.89,
"shipping": 0,
"total": 1154.45,
"placedAt": "2026-01-30T17:36:15.077Z",
"shippedAt": "2026-02-01T14:24:39.266Z",
"deliveredAt": null,
"createdAt": "2026-01-30T17:36:15.077Z",
"updatedAt": "2026-02-01T14:24:39.266Z"
}