shipments #233
- orderId
- orders/451
- carrier
- fedex
- trackingNumber
- FWDCGIMYUJVWTOXT
- status
- label_created
- shippedAt
- deliveredAt
- —
- estimatedDeliveryAt
- createdAt
Overview
shipments / #233
#233
#233
Request
curl example
curl -sS \ "https://example-data.com/api/v1/shipments/233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/shipments/233" ); 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/233"
);
const shipment = (await res.json()) as Shipment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/shipments/233"
)
shipment = res.json() Response
{
"id": 233,
"orderId": 451,
"carrier": "fedex",
"trackingNumber": "FWDCGIMYUJVWTOXT",
"status": "label_created",
"shippedAt": "2026-04-12T10:24:30.411Z",
"deliveredAt": null,
"estimatedDeliveryAt": "2026-04-19T07:45:56.804Z",
"createdAt": "2026-04-12T10:24:30.411Z"
}