---
title: "Get Shipment"
method: GET
path: "/api/v1/admin/shipments/{shipment_id}"
tags: ["admin-shipments"]
---

# Get Shipment

`GET /api/v1/admin/shipments/{shipment_id}`

Get shipment detail with tracking events.

## Path parameters

- `shipment_id` string, uuid, required

## Response `200`

Successful Response

- ShipmentDetailResponse — Full shipment with nested events and project name.
  - `id` string, uuid, required
  - `project_id` string, uuid, required
  - `carrier` string, nullable
  - `tracking_number` string, nullable
  - `tracking_url` string, nullable
  - `status` string, required
  - `estimated_delivery` string, date, nullable
  - `actual_delivery` string, date, nullable
  - `shipped_at` string, date-time, nullable
  - `notes` string, nullable
  - `project_name` string, nullable
  - `events` ShipmentEventResponse[]
    - `id` string, uuid, required
    - `shipment_id` string, uuid, required
    - `status` string, required
    - `description` string, required
    - `location` string, nullable
    - `occurred_at` string, date-time, required
    - `created_at` string, date-time, required
  - `packages` ShipmentPackageTrackingResponse[]
    - `id` string, uuid, required
    - `package_index` integer, required
    - `tracking_number` string, nullable
    - `tracking_url` string, nullable
    - `weight_unit` string, nullable
    - `label_status` string, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
