orders / #280
- userId
-
Mckenna Hegmann-Price @mckenna.hegmann-price77
- status
- shipped
- currency
- USD
- subtotal
- 1357.35
- tax
- 118.77
- shipping
- 0
- total
- 1476.12
- placedAt
- shippedAt
- deliveredAt
- —
- createdAt
- updatedAt
Component variants
Medium
#280
#280
Small
orders/280 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/280" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/280"
);
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/280"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/280"
)
order = res.json() {
"id": 280,
"userId": 62,
"status": "shipped",
"currency": "USD",
"subtotal": 1357.35,
"tax": 118.77,
"shipping": 0,
"total": 1476.12,
"placedAt": "2026-03-05T10:57:28.238Z",
"shippedAt": "2026-03-07T06:50:24.010Z",
"deliveredAt": null,
"createdAt": "2026-03-05T10:57:28.238Z",
"updatedAt": "2026-03-07T06:50:24.010Z"
}