orders / #453
- userId
-
Tiara Wilderman @tiara_wilderman
- status
- delivered
- currency
- USD
- subtotal
- 760.38
- tax
- 66.53
- shipping
- 0
- total
- 826.91
- placedAt
- shippedAt
- deliveredAt
- createdAt
- updatedAt
Component variants
Medium
#453
#453
Small
orders/453 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/453" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/453"
);
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/453"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/453"
)
order = res.json() {
"id": 453,
"userId": 66,
"status": "delivered",
"currency": "USD",
"subtotal": 760.38,
"tax": 66.53,
"shipping": 0,
"total": 826.91,
"placedAt": "2025-09-23T00:33:29.302Z",
"shippedAt": "2025-09-25T21:07:05.627Z",
"deliveredAt": "2025-10-01T08:01:27.764Z",
"createdAt": "2025-09-23T00:33:29.302Z",
"updatedAt": "2025-10-01T08:01:27.764Z"
}