shipments / #148
- orderId
- orders/285
- carrier
- ups
- trackingNumber
- CKWN4ZVDC79IDACW
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#148
#148
Small
shipments/148 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/148"
);
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/148"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/148"
)
shipment = res.json() {
"id": 148,
"orderId": 285,
"carrier": "ups",
"trackingNumber": "CKWN4ZVDC79IDACW",
"status": "label_created",
"shippedAt": "2025-06-26T11:30:54.880Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-07-03T19:51:03.145Z",
"createdAt": "2025-06-26T11:30:54.880Z"
}