example-data.com

shipments / #103

orderId
orders/183
carrier
ups
trackingNumber
RLWGW8ALLTO2RCQF
status
delivered
shippedAt
deliveredAt
estimatedDeliveryAt
createdAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/shipments/103"
)
shipment = res.json()
{
  "id": 103,
  "orderId": 183,
  "carrier": "ups",
  "trackingNumber": "RLWGW8ALLTO2RCQF",
  "status": "delivered",
  "shippedAt": "2026-05-09T08:56:42.835Z",
  "deliveredAt": "2026-05-14T09:11:25.432Z",
  "estimatedDeliveryAt": "2026-05-14T05:16:48.488Z",
  "createdAt": "2026-05-09T08:56:42.835Z"
}
Draftbit