orders / #136
- userId
-
Mia Renner @mia.renner47
- status
- confirmed
- currency
- USD
- subtotal
- 3612.79
- tax
- 316.12
- shipping
- 0
- total
- 3928.91
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#136
#136
Small
orders/136 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/136"
);
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/136"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/136"
)
order = res.json() {
"id": 136,
"userId": 212,
"status": "confirmed",
"currency": "USD",
"subtotal": 3612.79,
"tax": 316.12,
"shipping": 0,
"total": 3928.91,
"placedAt": "2025-03-04T05:42:30.953Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-03-04T05:42:30.953Z",
"updatedAt": "2025-03-04T05:42:30.953Z"
}