orders / #291
- userId
-
Cruz Okuneva @cruz.okuneva
- status
- shipped
- currency
- USD
- subtotal
- 1446.6
- tax
- 126.58
- shipping
- 0
- total
- 1573.18
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#291
#291
Small
orders/291 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/291" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/291"
);
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/291"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/291"
)
order = res.json() {
"id": 291,
"userId": 239,
"status": "shipped",
"currency": "USD",
"subtotal": 1446.6,
"tax": 126.58,
"shipping": 0,
"total": 1573.18,
"placedAt": "2025-02-19T08:01:54.942Z",
"shippedAt": "2025-02-21T04:09:12.954Z",
"deliveredAt": null,
"createdAt": "2025-02-19T08:01:54.942Z",
"updatedAt": "2025-02-21T04:09:12.954Z"
}