Skip to main content
GET
/
v1
/
shipments
List
curl --request GET \
  --url https://{defaultHost}/v1/shipments \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/shipments"
  },
  "data": [
    {
      "id": "810f556e-747e-45c7-8c47-3c991a1cd154",
      "object": "shipment",
      "carrier": null,
      "carrier_messages": [],
      "contact_validations": null,
      "dimensions": {
        "length": 10,
        "width": 8,
        "height": 5,
        "unit": "in"
      },
      "eta": null,
      "inherit_weight": false,
      "label_file_type": "PDF",
      "label_url": null,
      "live_mode": true,
      "rates": [],
      "selected_rate": null,
      "shipping_date": 1782432000,
      "status": "draft",
      "tracking_number": null,
      "tracking_status": null,
      "tracking_url": null,
      "weight": "2.0",
      "weight_unit": "lb",
      "from_contact": "902eb0f3-d733-429f-bd84-2dcaefeb8990",
      "fulfillment": "f6d5e124-9fda-467d-80d8-6d2de8e528a0",
      "parcel_template": null,
      "shipping_provider": "352387d9-9834-4293-a4d4-41d6320c1512",
      "to_contact": "c87450bd-4e3e-4518-8d1f-8c971b576458",
      "created_at": 1782479598,
      "updated_at": 1782479598
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

fulfillment_ids[]
string[]

Only return objects that belong to the given fulfillments.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

status[]
string[]

Only return objects with the given status.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.