orders / #371
- userId
-
Merl Jenkins @merl.jenkins6
- status
- delivered
- currency
- USD
- subtotal
- 2910.81
- tax
- 254.7
- shipping
- 0
- total
- 3165.51
- placedAt
- shippedAt
- deliveredAt
- createdAt
- updatedAt
Component variants
Medium
#371
#371
Small
orders/371 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/orders/371" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orders/371"
);
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/371"
);
const order = (await res.json()) as Order;import requests
res = requests.get(
"https://example-data.com/api/v1/orders/371"
)
order = res.json() {
"id": 371,
"userId": 60,
"status": "delivered",
"currency": "USD",
"subtotal": 2910.81,
"tax": 254.7,
"shipping": 0,
"total": 3165.51,
"placedAt": "2026-01-30T03:27:30.796Z",
"shippedAt": "2026-01-31T14:28:12.254Z",
"deliveredAt": "2026-02-07T04:26:55.492Z",
"createdAt": "2026-01-30T03:27:30.796Z",
"updatedAt": "2026-02-07T04:26:55.492Z"
}