orders / #46
- userId
-
Wade Upton @wade_upton78
- status
- shipped
- currency
- USD
- subtotal
- 797.68
- tax
- 69.8
- shipping
- 0
- total
- 867.48
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/46"
);
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/46"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/46"
)
order = res.json() {
"id": 46,
"userId": 129,
"status": "shipped",
"currency": "USD",
"subtotal": 797.68,
"tax": 69.8,
"shipping": 0,
"total": 867.48,
"placedAt": "2026-03-09T07:07:24.079Z",
"shippedAt": "2026-03-11T17:12:37.739Z",
"deliveredAt": null,
"createdAt": "2026-03-09T07:07:24.079Z",
"updatedAt": "2026-03-11T17:12:37.739Z"
}