example-data.com

shipments / #85

orderId
orders/146
carrier
usps
trackingNumber
M3NTAGO30OC85VOV
status
delivered
shippedAt
deliveredAt
estimatedDeliveryAt
createdAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/shipments/85" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/shipments/85"
);
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/85"
);
const shipment = (await res.json()) as Shipment;
import requests

res = requests.get(
    "https://example-data.com/api/v1/shipments/85"
)
shipment = res.json()
{
  "id": 85,
  "orderId": 146,
  "carrier": "usps",
  "trackingNumber": "M3NTAGO30OC85VOV",
  "status": "delivered",
  "shippedAt": "2026-01-28T19:11:57.675Z",
  "deliveredAt": "2026-02-03T02:08:20.015Z",
  "estimatedDeliveryAt": "2026-02-04T22:57:22.366Z",
  "createdAt": "2026-01-28T19:11:57.675Z"
}
Draftbit