orders / #312
- userId
-
Douglas Frami @douglas.frami
- status
- confirmed
- currency
- USD
- subtotal
- 1897.56
- tax
- 166.04
- shipping
- 0
- total
- 2063.6
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#312
#312
Small
orders/312 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/312" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/312"
);
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/312"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/312"
)
order = res.json() {
"id": 312,
"userId": 148,
"status": "confirmed",
"currency": "USD",
"subtotal": 1897.56,
"tax": 166.04,
"shipping": 0,
"total": 2063.6,
"placedAt": "2025-09-06T19:46:19.852Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2025-09-06T19:46:19.852Z",
"updatedAt": "2025-09-06T19:46:19.852Z"
}