orders / #169
- userId
-
Leonel Hamill @leonel_hamill33
- status
- refunded
- currency
- USD
- subtotal
- 910.29
- tax
- 79.65
- shipping
- 0
- total
- 989.94
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#169
#169
Small
orders/169 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/169" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/169"
);
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/169"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/169"
)
order = res.json() {
"id": 169,
"userId": 11,
"status": "refunded",
"currency": "USD",
"subtotal": 910.29,
"tax": 79.65,
"shipping": 0,
"total": 989.94,
"placedAt": "2026-02-15T16:49:00.964Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2026-02-15T16:49:00.964Z",
"updatedAt": "2026-02-15T16:49:00.964Z"
}