shipments / #217
- orderId
- orders/417
- carrier
- usps
- trackingNumber
- 8C0VDPUW0KRKBG90
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#217
#217
Small
shipments/217 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/217" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/217"
);
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/217"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/217"
)
shipment = res.json() {
"id": 217,
"orderId": 417,
"carrier": "usps",
"trackingNumber": "8C0VDPUW0KRKBG90",
"status": "label_created",
"shippedAt": "2025-12-03T22:45:57.713Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-12-13T14:07:30.730Z",
"createdAt": "2025-12-03T22:45:57.713Z"
}