orders / #182
- userId
-
Cassidy Boehm @cassidy_boehm22
- status
- cancelled
- currency
- USD
- subtotal
- 871.98
- tax
- 76.3
- shipping
- 0
- total
- 948.28
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#182
#182
Small
orders/182 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/182" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/182"
);
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/182"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/182"
)
order = res.json() {
"id": 182,
"userId": 204,
"status": "cancelled",
"currency": "USD",
"subtotal": 871.98,
"tax": 76.3,
"shipping": 0,
"total": 948.28,
"placedAt": "2025-03-14T13:14:27.436Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-03-14T13:14:27.436Z",
"updatedAt": "2025-03-14T13:14:27.436Z"
}