orders / #267
- userId
-
Guy Christiansen @guy.christiansen40
- status
- shipped
- currency
- USD
- subtotal
- 919.82
- tax
- 80.48
- shipping
- 0
- total
- 1000.3
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#267
#267
Small
orders/267 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/267" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/267"
);
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/267"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/267"
)
order = res.json() {
"id": 267,
"userId": 21,
"status": "shipped",
"currency": "USD",
"subtotal": 919.82,
"tax": 80.48,
"shipping": 0,
"total": 1000.3,
"placedAt": "2025-09-25T00:42:12.599Z",
"shippedAt": "2025-09-27T01:26:23.074Z",
"deliveredAt": null,
"createdAt": "2025-09-25T00:42:12.599Z",
"updatedAt": "2025-09-27T01:26:23.074Z"
}