shipments / #48
- orderId
- orders/86
- carrier
- usps
- trackingNumber
- UWGGTJ3XV3UYDZ2Z
- status
- in_transit
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#48
#48
Small
shipments/48 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/48"
);
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/48"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/48"
)
shipment = res.json() {
"id": 48,
"orderId": 86,
"carrier": "usps",
"trackingNumber": "UWGGTJ3XV3UYDZ2Z",
"status": "in_transit",
"shippedAt": "2025-05-23T17:29:13.928Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-05-29T19:59:25.643Z",
"createdAt": "2025-05-23T17:29:13.928Z"
}