orders / #91
- userId
-
Amely Daniel @amely_daniel
- status
- refunded
- currency
- USD
- subtotal
- 339.45
- tax
- 29.7
- shipping
- 0
- total
- 369.15
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/91" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/91"
);
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/91"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/91"
)
order = res.json() {
"id": 91,
"userId": 41,
"status": "refunded",
"currency": "USD",
"subtotal": 339.45,
"tax": 29.7,
"shipping": 0,
"total": 369.15,
"placedAt": "2026-04-26T21:14:39.766Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2026-04-26T21:14:39.766Z",
"updatedAt": "2026-04-26T21:14:39.766Z"
}