shipments / #185
- orderId
- orders/353
- carrier
- dhl
- trackingNumber
- E52RIN6DL32OQ4NO
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#185
#185
Small
shipments/185 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/185"
);
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/185"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/185"
)
shipment = res.json() {
"id": 185,
"orderId": 353,
"carrier": "dhl",
"trackingNumber": "E52RIN6DL32OQ4NO",
"status": "label_created",
"shippedAt": "2025-07-30T22:27:21.506Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-08-02T00:20:50.013Z",
"createdAt": "2025-07-30T22:27:21.506Z"
}