shipments / #62
- orderId
- orders/112
- carrier
- fedex
- trackingNumber
- 8W87R1E60N3HNWKM
- status
- delivered
- shippedAt
- deliveredAt
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#62
#62
Small
shipments/62 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/62"
);
const shipment = await res.json();import type { Shipment } from "https://example-data.com/types/shipments.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/shipments/62"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/62"
)
shipment = res.json() {
"id": 62,
"orderId": 112,
"carrier": "fedex",
"trackingNumber": "8W87R1E60N3HNWKM",
"status": "delivered",
"shippedAt": "2026-01-24T21:03:38.947Z",
"deliveredAt": "2026-02-01T00:10:22.145Z",
"estimatedDeliveryAt": "2026-01-28T06:13:12.458Z",
"createdAt": "2026-01-24T21:03:38.947Z"
}