orders / #318
- userId
-
Anne Hamill @anne_hamill75
- status
- shipped
- currency
- USD
- subtotal
- 337.79
- tax
- 29.56
- shipping
- 0
- total
- 367.35
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#318
#318
Small
orders/318 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/318" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/318"
);
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/318"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/318"
)
order = res.json() {
"id": 318,
"userId": 9,
"status": "shipped",
"currency": "USD",
"subtotal": 337.79,
"tax": 29.56,
"shipping": 0,
"total": 367.35,
"placedAt": "2025-12-20T05:19:28.822Z",
"shippedAt": "2025-12-21T12:08:59.361Z",
"deliveredAt": null,
"createdAt": "2025-12-20T05:19:28.822Z",
"updatedAt": "2025-12-21T12:08:59.361Z"
}