orders / #231
- userId
-
Jamal Gerhold @jamal.gerhold
- status
- cancelled
- currency
- USD
- subtotal
- 2634.56
- tax
- 230.52
- shipping
- 0
- total
- 2865.08
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#231
#231
Small
orders/231 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/231" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/231"
);
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/231"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/231"
)
order = res.json() {
"id": 231,
"userId": 115,
"status": "cancelled",
"currency": "USD",
"subtotal": 2634.56,
"tax": 230.52,
"shipping": 0,
"total": 2865.08,
"placedAt": "2025-08-01T23:33:00.210Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-08-01T23:33:00.210Z",
"updatedAt": "2025-08-01T23:33:00.210Z"
}