orders / #223
- userId
-
Maria Senger @maria.senger
- status
- shipped
- currency
- USD
- subtotal
- 1898.56
- tax
- 166.12
- shipping
- 0
- total
- 2064.68
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#223
#223
Small
orders/223 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/223" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/223"
);
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/223"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/223"
)
order = res.json() {
"id": 223,
"userId": 120,
"status": "shipped",
"currency": "USD",
"subtotal": 1898.56,
"tax": 166.12,
"shipping": 0,
"total": 2064.68,
"placedAt": "2025-07-20T18:38:05.574Z",
"shippedAt": "2025-07-23T10:00:08.789Z",
"deliveredAt": null,
"createdAt": "2025-07-20T18:38:05.574Z",
"updatedAt": "2025-07-23T10:00:08.789Z"
}