orders / #411
- userId
-
Lazaro Herzog @lazaro_herzog
- status
- shipped
- currency
- USD
- subtotal
- 869.5
- tax
- 76.08
- shipping
- 0
- total
- 945.58
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#411
#411
Small
orders/411 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/411" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/411"
);
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/411"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/411"
)
order = res.json() {
"id": 411,
"userId": 181,
"status": "shipped",
"currency": "USD",
"subtotal": 869.5,
"tax": 76.08,
"shipping": 0,
"total": 945.58,
"placedAt": "2025-11-25T17:27:15.371Z",
"shippedAt": "2025-11-27T18:19:16.156Z",
"deliveredAt": null,
"createdAt": "2025-11-25T17:27:15.371Z",
"updatedAt": "2025-11-27T18:19:16.156Z"
}