orders / #155
- userId
-
Colby Kovacek @colby_kovacek40
- status
- pending
- currency
- USD
- subtotal
- 3158.76
- tax
- 276.39
- shipping
- 0
- total
- 3435.15
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#155
#155
Small
orders/155 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/155"
);
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/155"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/155"
)
order = res.json() {
"id": 155,
"userId": 85,
"status": "pending",
"currency": "USD",
"subtotal": 3158.76,
"tax": 276.39,
"shipping": 0,
"total": 3435.15,
"placedAt": "2026-01-30T05:47:09.936Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2026-01-30T05:47:09.936Z",
"updatedAt": "2026-01-30T05:47:09.936Z"
}