orders / #148
- userId
-
Adan Weber @adan.weber61
- status
- cancelled
- currency
- USD
- subtotal
- 983.96
- tax
- 86.1
- shipping
- 0
- total
- 1070.06
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#148
#148
Small
orders/148 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/148"
);
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/148"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/148"
)
order = res.json() {
"id": 148,
"userId": 155,
"status": "cancelled",
"currency": "USD",
"subtotal": 983.96,
"tax": 86.1,
"shipping": 0,
"total": 1070.06,
"placedAt": "2025-08-22T04:00:23.184Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-08-22T04:00:23.184Z",
"updatedAt": "2025-08-22T04:00:23.184Z"
}