AI agent? Read this page as Markdown at /shipping/tracking/List_all_trackings.md — append .md to any docs URL, or start from /llms.txt.
List all trackings
GET/shipping/{connection_id}/tracking
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
order_idstring
The AccountingOrder ID to filter by
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Returns
ShippingTrackingarray
idstring
Unique identifier for this tracking object
created_atdate
The date that this tracking object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this tracking object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
shipment_idstring
Reference to the shipment
tracking_numberstring
Tracking number for the shipment
status enum
Current status of the shipment
estimated_deliverydate
Estimated delivery date
actual_delivery_atdate
Actual delivery timestamp (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status_descriptionstring
Human-readable status
carrier_idstring
Reference to the carrier
carrier_status_codestring
Carrier's status code
carrier_status_descriptionstring
Carrier's status description
const options = {
method: 'GET',
url: 'https://api.unified.to/shipping/5de520f96e439b002043d8dc/tracking',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-08-28T20:13:15.777Z',
sort: 'updated_at',
order: 'asc',
query: '',
order_id: '',
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know