example-data.com
Menu
Browse docs and collections

Overview

shipments / #406

shipments #406

orderId
orders/759
carrier
ups
trackingNumber
SR66NTJY71H46O77
status
delivered
shippedAt
deliveredAt
estimatedDeliveryAt
createdAt

Component variants

Related

References

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/shipments/406" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/shipments/406"
);
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/406"
);
const shipment = (await res.json()) as Shipment;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/shipments/406"
)
shipment = res.json()

Response

{
  "id": 406,
  "orderId": 759,
  "carrier": "ups",
  "trackingNumber": "SR66NTJY71H46O77",
  "status": "delivered",
  "shippedAt": "2025-09-21T04:17:13.534Z",
  "deliveredAt": "2025-09-29T04:10:45.111Z",
  "estimatedDeliveryAt": "2025-09-28T18:43:31.375Z",
  "createdAt": "2025-09-21T04:17:13.534Z"
}