orders / #270
- userId
-
Casimir Smitham @casimir_smitham35
- status
- confirmed
- currency
- USD
- subtotal
- 887.97
- tax
- 77.7
- shipping
- 0
- total
- 965.67
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#270
#270
Small
orders/270 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/270" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/270"
);
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/270"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/270"
)
order = res.json() {
"id": 270,
"userId": 16,
"status": "confirmed",
"currency": "USD",
"subtotal": 887.97,
"tax": 77.7,
"shipping": 0,
"total": 965.67,
"placedAt": "2025-03-13T18:50:25.210Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-03-13T18:50:25.210Z",
"updatedAt": "2025-03-13T18:50:25.210Z"
}