orders / #211
- userId
-
Kaleb Schmidt @kaleb.schmidt
- status
- cancelled
- currency
- USD
- subtotal
- 766.44
- tax
- 67.06
- shipping
- 0
- total
- 833.5
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#211
#211
Small
orders/211 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/211"
);
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/211"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/211"
)
order = res.json() {
"id": 211,
"userId": 171,
"status": "cancelled",
"currency": "USD",
"subtotal": 766.44,
"tax": 67.06,
"shipping": 0,
"total": 833.5,
"placedAt": "2026-04-08T05:29:37.639Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2026-04-08T05:29:37.639Z",
"updatedAt": "2026-04-08T05:29:37.639Z"
}