example-data.com

shipments / #65

orderId
orders/115
carrier
usps
trackingNumber
S6FNPUH3CA1RR6N6
status
delivered
shippedAt
deliveredAt
estimatedDeliveryAt
createdAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/shipments/65"
)
shipment = res.json()
{
  "id": 65,
  "orderId": 115,
  "carrier": "usps",
  "trackingNumber": "S6FNPUH3CA1RR6N6",
  "status": "delivered",
  "shippedAt": "2024-10-10T20:10:51.032Z",
  "deliveredAt": "2024-10-17T21:21:45.640Z",
  "estimatedDeliveryAt": "2024-10-20T06:57:05.932Z",
  "createdAt": "2024-10-10T20:10:51.032Z"
}
Draftbit