shipments #110
- orderId
- orders/195
- carrier
- fedex
- trackingNumber
- HHS6O8GOMLT3WVWR
- status
- delivered
- shippedAt
- deliveredAt
- estimatedDeliveryAt
- createdAt
Overview
shipments / #110
#110
#110
Request
curl example
curl -sS \ "https://example-data.com/api/v1/shipments/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/shipments/110" ); const shipment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/shipments.d.ts https://example-data.com/types/shipments.d.ts
import type { Shipment } from "./types/shipments";
const res = await fetch(
"https://example-data.com/api/v1/shipments/110"
);
const shipment = (await res.json()) as Shipment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/110"
)
shipment = res.json() Response
{
"id": 110,
"orderId": 195,
"carrier": "fedex",
"trackingNumber": "HHS6O8GOMLT3WVWR",
"status": "delivered",
"shippedAt": "2025-11-15T16:38:17.894Z",
"deliveredAt": "2025-11-18T06:35:54.116Z",
"estimatedDeliveryAt": "2025-11-25T15:51:54.355Z",
"createdAt": "2025-11-15T16:38:17.894Z"
}