example-data.com
Menu
Browse docs and collections

Overview

shipments / #391

shipments #391

orderId
orders/731
carrier
usps
trackingNumber
RWZRERGZSQS8UNQ0
status
label_created
shippedAt
deliveredAt
estimatedDeliveryAt
createdAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 391,
  "orderId": 731,
  "carrier": "usps",
  "trackingNumber": "RWZRERGZSQS8UNQ0",
  "status": "label_created",
  "shippedAt": "2026-02-15T04:29:22.752Z",
  "deliveredAt": null,
  "estimatedDeliveryAt": "2026-02-21T17:55:09.442Z",
  "createdAt": "2026-02-15T04:29:22.752Z"
}