orders / #399
- userId
-
Chyna Kozey @chyna_kozey80
- status
- confirmed
- currency
- USD
- subtotal
- 1469.4
- tax
- 128.57
- shipping
- 0
- total
- 1597.97
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#399
#399
Small
orders/399 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/399" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/399"
);
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/399"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/399"
)
order = res.json() {
"id": 399,
"userId": 140,
"status": "confirmed",
"currency": "USD",
"subtotal": 1469.4,
"tax": 128.57,
"shipping": 0,
"total": 1597.97,
"placedAt": "2026-05-12T13:34:25.314Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2026-05-12T13:34:25.314Z",
"updatedAt": "2026-05-12T13:34:25.314Z"
}