orders / #178
- userId
-
Lamar Wilkinson @lamar_wilkinson43
- status
- refunded
- currency
- USD
- subtotal
- 692.07
- tax
- 60.56
- shipping
- 0
- total
- 752.63
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#178
#178
Small
orders/178 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/178"
);
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/178"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/178"
)
order = res.json() {
"id": 178,
"userId": 43,
"status": "refunded",
"currency": "USD",
"subtotal": 692.07,
"tax": 60.56,
"shipping": 0,
"total": 752.63,
"placedAt": "2025-05-07T01:04:20.536Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-05-07T01:04:20.536Z",
"updatedAt": "2025-05-07T01:04:20.536Z"
}