v48

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-208342528.4 KB
Shipments

List shipments

Returns a list of your shipments. The shipments are returned sorted by creation date, with the most recent shipments appearing first.

This api will return all shipments associated with the account. Shipments created via the tracking_request API aswell as the ones added via the dashboard will be retuned via this endpoint.

get/shipments

Query parameters

page[number]integer
page[size]integer
qstring

Search shipments by master bill of lading, reference number, or container number.

includestring

Comma delimited list of relations to include

numberstring

Search shipments by the original tracking request_number — typically a master bill of lading or booking number. This filter does not match container numbers; to look up a shipment by container number, use GET /containers?filter[number]={container_number} and include the related shipment via include=shipment.

filter[tracking_stopped]boolean

Filter shipments by whether they are still tracking or not

Response

OK

Example response

{
  "included": [
    {
      "attributes": {
        "fees_at_pod_terminal": [
          {
            "currency_code": "USD"
          }
        ]
      }
    }
  ]
}