List Shipments
Searches your Shipments and returns key information for each match, including its latest event. Use Retrieve Shipment Details for the full record of a single Shipment.
A date range is required: provide exactly one of the pairs
created_date_*, updated_date_*, or latest_event_date_* — both ends
together, _from ≤ _to, and _from at most 13 months in the past
(the data retention window). Format yyyy-mm-ddThh:mm:ss, processed as
UTC.
AND/OR filters: parameters marked AND/OR accept bracket syntax —
field=['a','b'] matches both (AND), field=[['a','b']] matches either
(OR), field=['x',['a','b']] mixes them. String values must be quoted;
URL-encode the brackets and quotes if your client requires it.
Pagination: cursor-based. limit is 25–100 (default 25). Pass the
next_page value from each response into the next request; the first
page is next_page=0. You have reached the last page when the response
no longer returns a next_page value.
No match: a valid search with zero results returns HTTP 404 with
api_response 4041 — not an empty array.
Authorizations
Used by every functional endpoint. Generate the token with POST /auth/oauth/token/ and send it as Authorization: Bearer {token}.
Query Parameters
Start of the created-date range. Pair with created_date_to.
End of the created-date range.
Start of the updated-date range. Pair with updated_date_to.
End of the updated-date range.
Start of the latest-event-date range. Pair with latest_event_date_to.
End of the latest-event-date range.
Tracking number. Max 75 chars per entry. AND/OR.
Shipment reference. Max 75 chars per entry. AND/OR.
Additional reference. Max 75 chars per entry. AND/OR.
Order UUID of the associated order. AND/OR.
Order ID of the associated order. Max 75 chars per entry. AND/OR.
Order reference of the associated order. Max 75 chars per entry. AND/OR.
Perform.AI 6-character carrier ID. Exactly 6 characters. AND/OR.
Configured carrier reference. Max 75 chars per entry. AND/OR.
Shipment status. AND/OR.
pending, expired, active, inactive, delivered, return Current delivery phase, using standard phase keys. AND/OR.
Tags added to the Shipment. AND/OR.
Notification email address on the Shipment. AND/OR.
Notification phone number on the Shipment (normalized to +{country code}{number}). AND/OR.
Tracking page reference. Max 150 chars per entry. AND/OR.
Origin country, ISO 3166-1 alpha-2. AND/OR.
Destination country, ISO 3166-1 alpha-2. AND/OR.
Tracking number of a linked Shipment. Max 50 chars per entry. AND/OR.
Whether the Shipment has, had, or never had an issue. AND/OR.
no_issue, current_issue, past_issue Type of delivery issue encountered. AND/OR.
Domestic or international. AND/OR.
domestic, international Results per response.
25 <= x <= 100Pagination cursor. 0 for the first page; then the next_page value returned by the previous response.