shipments / #6
- orderId
- orders/8
- carrier
- usps
- trackingNumber
- UEGSISSS78I28YSJ
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#6
#6
Small
shipments/6 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/6"
);
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/6"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/6"
)
shipment = res.json() {
"id": 6,
"orderId": 8,
"carrier": "usps",
"trackingNumber": "UEGSISSS78I28YSJ",
"status": "label_created",
"shippedAt": "2025-12-23T16:53:04.740Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-12-27T18:23:03.320Z",
"createdAt": "2025-12-23T16:53:04.740Z"
}