orders / #345
- userId
-
Ari Howe @ari.howe73
- status
- confirmed
- currency
- USD
- subtotal
- 4162.84
- tax
- 364.25
- shipping
- 0
- total
- 4527.09
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#345
#345
Small
orders/345 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/345" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/345"
);
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/345"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/345"
)
order = res.json() {
"id": 345,
"userId": 167,
"status": "confirmed",
"currency": "USD",
"subtotal": 4162.84,
"tax": 364.25,
"shipping": 0,
"total": 4527.09,
"placedAt": "2025-10-26T19:34:20.631Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-10-26T19:34:20.631Z",
"updatedAt": "2025-10-26T19:34:20.631Z"
}