---
title: "List shipments for checkout intent"
method: GET
path: "/api/v1/checkout-intents/{id}/shipments"
tags: ["Checkout Intents"]
---

# List shipments for checkout intent

`GET /api/v1/checkout-intents/{id}/shipments`

List shipments for a checkout intent

## Path parameters

- `id` string, required

## Query parameters

- `limit` integer
- `after` string
- `before` string

## Response `200`

Shipments list response

- ShipmentsListResponse
  - `pageInfo` object, required
    - `endCursor` string
    - `startCursor` string
    - `hasPreviousPage` boolean, required
    - `hasNextPage` boolean, required
  - `data` Shipment[], required
    - union
      - union — Shipments that have tracking information (shipped, delayed, or delivered states)
        - ShippedShipment
          - `updatedAt` string, date-time, required
          - `createdAt` string, date-time, required
          - `marketplaceOrderId` string, required
          - `checkoutIntentId` string, required
          - `id` string, required
          - `trackingEvents` TrackingEvent[], required
            - `status` 'out_for_delivery' | 'delivered' | 'shipped' | 'canceled' | 'delayed' | 'ordered', required
            - `location` EventLocation, required
              - …
            - `timestamp` TrackingEventTimestamp, required
              - …
            - `description` string, nullable, required
          - `shippedAt` string, date-time, required
          - `tracking` ShipmentTracking, required
            - `carrierName` string, nullable
            - `number` string, nullable, required
            - `deliveryDate` DeliveryDate
              - …
            - `url` string, nullable
          - `externalId` string, required — The external ID is provided by the marketplace and matches the shipment to their system.
          - `status` 'shipped', required
        - DeliveredShipment
          - `updatedAt` string, date-time, required
          - `createdAt` string, date-time, required
          - `marketplaceOrderId` string, required
          - `checkoutIntentId` string, required
          - `id` string, required
          - `trackingEvents` TrackingEvent[], required
            - `status` 'out_for_delivery' | 'delivered' | 'shipped' | 'canceled' | 'delayed' | 'ordered', required
            - `location` EventLocation, required
              - …
            - `timestamp` TrackingEventTimestamp, required
              - …
            - `description` string, nullable, required
          - `shippedAt` string, date-time, required
          - `tracking` ShipmentTracking, required
            - `carrierName` string, nullable
            - `number` string, nullable, required
            - `deliveryDate` DeliveryDate
              - …
            - `url` string, nullable
          - `externalId` string, required — The external ID is provided by the marketplace and matches the shipment to their system.
          - `status` 'delivered', required
          - `deliveredAt` string, date-time, required
        - DelayedShipment
          - `updatedAt` string, date-time, required
          - `createdAt` string, date-time, required
          - `marketplaceOrderId` string, required
          - `checkoutIntentId` string, required
          - `id` string, required
          - `trackingEvents` TrackingEvent[], required
            - `status` 'out_for_delivery' | 'delivered' | 'shipped' | 'canceled' | 'delayed' | 'ordered', required
            - `location` EventLocation, required
              - …
            - `timestamp` TrackingEventTimestamp, required
              - …
            - `description` string, nullable, required
          - `shippedAt` string, date-time, required
          - `tracking` ShipmentTracking, required
            - `carrierName` string, nullable
            - `number` string, nullable, required
            - `deliveryDate` DeliveryDate
              - …
            - `url` string, nullable
          - `externalId` string, required — The external ID is provided by the marketplace and matches the shipment to their system.
          - `status` 'delayed', required
        - OutForDeliveryShipment
          - `updatedAt` string, date-time, required
          - `createdAt` string, date-time, required
          - `marketplaceOrderId` string, required
          - `checkoutIntentId` string, required
          - `id` string, required
          - `trackingEvents` TrackingEvent[], required
            - `status` 'out_for_delivery' | 'delivered' | 'shipped' | 'canceled' | 'delayed' | 'ordered', required
            - `location` EventLocation, required
              - …
            - `timestamp` TrackingEventTimestamp, required
              - …
            - `description` string, nullable, required
          - `shippedAt` string, date-time, required
          - `tracking` ShipmentTracking, required
            - `carrierName` string, nullable
            - `number` string, nullable, required
            - `deliveryDate` DeliveryDate
              - …
            - `url` string, nullable
          - `externalId` string, required — The external ID is provided by the marketplace and matches the shipment to their system.
          - `status` 'out_for_delivery', required
      - union — Shipments without tracking information
        - OrderedShipment
          - `updatedAt` string, date-time, required
          - `createdAt` string, date-time, required
          - `marketplaceOrderId` string, required
          - `checkoutIntentId` string, required
          - `id` string, required
          - `status` 'ordered', required
        - CanceledShipment
          - `updatedAt` string, date-time, required
          - `createdAt` string, date-time, required
          - `marketplaceOrderId` string, required
          - `checkoutIntentId` string, required
          - `id` string, required
          - `status` 'canceled', required

## Other responses

- `401` — Authentication Failed
- `404` — Not Found
- `422` — Validation Error

## Changes

- **2026-06-08** `0b28c67737d3` — 1 info
  - the security scope `checkout_intents:read` was added to the endpoint's security scheme `bearerAuth`

[Change history](https://skmtc.dev/rye-com/apis/universal-checkout-api/changes/api/v1/checkout-intents/:id/shipments/get.md)

---

[API](https://skmtc.dev/rye-com/apis/universal-checkout-api.md) · [All operations](https://skmtc.dev/rye-com/apis/universal-checkout-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rye-com/universal-checkout-api/revisions/175c7f9e090e/schema)
