orders / #243
- userId
-
Rubye Emmerich @rubye.emmerich
- status
- delivered
- currency
- USD
- subtotal
- 1118.79
- tax
- 97.89
- shipping
- 0
- total
- 1216.68
- placedAt
- shippedAt
- deliveredAt
- createdAt
- updatedAt
Component variants
Medium
#243
#243
Small
orders/243 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/243" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/243"
);
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/243"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/243"
)
order = res.json() {
"id": 243,
"userId": 225,
"status": "delivered",
"currency": "USD",
"subtotal": 1118.79,
"tax": 97.89,
"shipping": 0,
"total": 1216.68,
"placedAt": "2026-04-03T19:55:27.007Z",
"shippedAt": "2026-04-05T15:15:55.589Z",
"deliveredAt": "2026-04-10T19:16:24.241Z",
"createdAt": "2026-04-03T19:55:27.007Z",
"updatedAt": "2026-04-10T19:16:24.241Z"
}