shipments / #200
- orderId
- orders/391
- carrier
- ups
- trackingNumber
- I0HX3GLARKI01HG6
- status
- out_for_delivery
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#200
#200
Small
shipments/200 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/200"
);
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/200"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/200"
)
shipment = res.json() {
"id": 200,
"orderId": 391,
"carrier": "ups",
"trackingNumber": "I0HX3GLARKI01HG6",
"status": "out_for_delivery",
"shippedAt": "2026-02-04T07:36:56.086Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2026-02-08T19:11:43.867Z",
"createdAt": "2026-02-04T07:36:56.086Z"
}