orders / #404
- userId
-
Alexa Rippin @alexa_rippin25
- status
- confirmed
- currency
- USD
- subtotal
- 2580.3
- tax
- 225.78
- shipping
- 0
- total
- 2806.08
- placedAt
- shippedAt
- —
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#404
#404
Small
orders/404 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/404" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/404"
);
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/404"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/404"
)
order = res.json() {
"id": 404,
"userId": 235,
"status": "confirmed",
"currency": "USD",
"subtotal": 2580.3,
"tax": 225.78,
"shipping": 0,
"total": 2806.08,
"placedAt": "2026-05-06T13:21:23.083Z",
"shippedAt": null,
"deliveredAt": null,
"createdAt": "2026-05-06T13:21:23.083Z",
"updatedAt": "2026-05-06T13:21:23.083Z"
}