shipments / #186
- orderId
- orders/354
- carrier
- fedex
- trackingNumber
- YMGI2ZH0ABH7TQBG
- status
- delivered
- shippedAt
- deliveredAt
- estimatedDeliveryAt
- createdAt
Component variants
Medium
#186
#186
Small
shipments/186 Related
References
curl -sS \
"https://example-data.com/api/v1/shipments/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/shipments/186"
);
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/186"
);
const shipment = (await res.json()) as Shipment;import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/186"
)
shipment = res.json() {
"id": 186,
"orderId": 354,
"carrier": "fedex",
"trackingNumber": "YMGI2ZH0ABH7TQBG",
"status": "delivered",
"shippedAt": "2025-08-24T19:20:21.194Z",
"deliveredAt": "2025-08-27T14:37:58.087Z",
"estimatedDeliveryAt": "2025-08-30T00:43:50.470Z",
"createdAt": "2025-08-24T19:20:21.194Z"
}