orders / #108
- userId
-
Douglas Frami @douglas.frami
- status
- cancelled
- currency
- USD
- subtotal
- 2384.79
- tax
- 208.67
- shipping
- 0
- total
- 2593.46
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#108
#108
Small
orders/108 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/108"
);
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/108"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/108"
)
order = res.json() {
"id": 108,
"userId": 148,
"status": "cancelled",
"currency": "USD",
"subtotal": 2384.79,
"tax": 208.67,
"shipping": 0,
"total": 2593.46,
"placedAt": "2025-09-24T08:34:40.618Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-09-24T08:34:40.618Z",
"updatedAt": "2025-09-24T08:34:40.618Z"
}