shipments / #181
- orderId
- orders/342
- carrier
- usps
- trackingNumber
- Y96FAB0APU0XPI9M
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#181
#181
Small
shipments/181 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/181" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/181"
);
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/181"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/181"
)
shipment = res.json() {
"id": 181,
"orderId": 342,
"carrier": "usps",
"trackingNumber": "Y96FAB0APU0XPI9M",
"status": "label_created",
"shippedAt": "2025-09-27T10:37:54.059Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2025-09-30T04:41:51.536Z",
"createdAt": "2025-09-27T10:37:54.059Z"
}