orders / #339
- userId
-
Abdul Rau @abdul.rau
- status
- shipped
- currency
- USD
- subtotal
- 2582.7
- tax
- 225.99
- shipping
- 0
- total
- 2808.69
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#339
#339
Small
orders/339 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/339" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/339"
);
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/339"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/339"
)
order = res.json() {
"id": 339,
"userId": 108,
"status": "shipped",
"currency": "USD",
"subtotal": 2582.7,
"tax": 225.99,
"shipping": 0,
"total": 2808.69,
"placedAt": "2026-01-02T15:14:06.408Z",
"shippedAt": "2026-01-04T07:54:48.525Z",
"deliveredAt": null,
"createdAt": "2026-01-02T15:14:06.408Z",
"updatedAt": "2026-01-04T07:54:48.525Z"
}