---
title: "List Shipments"
method: GET
path: "/api/v1/admin/shipments/"
tags: ["admin-shipments"]
---

# List Shipments

`GET /api/v1/admin/shipments/`

List all shipments with pagination and optional status/project filter.

## Query parameters

- `status` string, nullable — Filter by shipment status
- `public_status` string, nullable — Filter by public shipment state: preparing, shipped, delivered, exception
- `project_id` string, uuid, nullable — Filter by project ID
- `offset` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseAdminShipmentListItem
  - `items` AdminShipmentListItem[], required
    - `id` string, uuid, required
    - `project_id` string, uuid, required
    - `project_name` string, nullable
    - `customer_name` string, nullable
    - `carrier` string, nullable
    - `tracking_number` string, nullable
    - `status` string, required
    - `estimated_delivery` string, date, nullable
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `total` integer, required
  - `offset` integer, required
  - `limit` integer, required
  - `has_more` boolean, 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)
