orders / #244
- userId
-
Joseph Steuber @joseph_steuber
- status
- shipped
- currency
- USD
- subtotal
- 1260.2
- tax
- 110.27
- shipping
- 0
- total
- 1370.47
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#244
#244
Small
orders/244 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/244" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/244"
);
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/244"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/244"
)
order = res.json() {
"id": 244,
"userId": 221,
"status": "shipped",
"currency": "USD",
"subtotal": 1260.2,
"tax": 110.27,
"shipping": 0,
"total": 1370.47,
"placedAt": "2026-01-27T06:50:15.804Z",
"shippedAt": "2026-01-28T20:57:48.951Z",
"deliveredAt": null,
"createdAt": "2026-01-27T06:50:15.804Z",
"updatedAt": "2026-01-28T20:57:48.951Z"
}