orders / #206
- userId
-
Casimir Smitham @casimir_smitham35
- status
- refunded
- currency
- USD
- subtotal
- 1537.4
- tax
- 134.52
- shipping
- 0
- total
- 1671.92
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#206
#206
Small
orders/206 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/206" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/206"
);
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/206"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/206"
)
order = res.json() {
"id": 206,
"userId": 16,
"status": "refunded",
"currency": "USD",
"subtotal": 1537.4,
"tax": 134.52,
"shipping": 0,
"total": 1671.92,
"placedAt": "2025-09-29T19:36:35.385Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-09-29T19:36:35.385Z",
"updatedAt": "2025-09-29T19:36:35.385Z"
}