Track and Trace

Looks up parcel tracking across multiple supported carriers from a single action. Use it when the carrier is known and you want a unified tracking response.

What it does

  • Queries the selected carrier for the tracking number.
  • Returns a standardised status, description, dates and raw event history.
  • Supports a safe mode that returns a not-found response instead of failing the flow.

Notes

  • Carrier must be one of the supported values listed in the Carrier input.

Inputs

NameTypeDescription
Tracking NumberStringThe tracking number of the package
CarrierStringThe carrier to query for this tracking ID Possible values: UPS, InPost UK, DPD UK, USPS, DHL, Amazon Shipping, Quiver, OCS, FedEx, Chronopost, Royal Mail, Yodel, WIZMO, Hermes UK, Evri International.
Safe modeOptional BooleanWhen true, errors are logged and returned as a standard not-found response with error=true instead of raising.

Outputs

NameTypeDescription
CarrierStringThe carrier that successfully found the tracking information Possible values: UPS, InPost UK, DPD UK, USPS, DHL, Amazon Shipping, Quiver, OCS, FedEx, Chronopost, Royal Mail, Yodel, WIZMO, Hermes UK, Evri International.
Found TrackingBooleanWhether tracking information was found for the tracking ID Possible values: True, False.
StatusStringCurrent status of the shipment Possible values: Label Created, Ready for Shipment, In Transit, Ready for Pickup, Delivered, Problem with Delivery, Returning to Sender, Unknown.
Status DescriptionStringHuman-readable description of the current status from the most recent tracking event
Tracking URLStringURL to the carrier's tracking page, or null if unavailable
Estimated DeliveryStringEstimated delivery date for the package
Shipping DateStringDate when the shipment was shipped (YYYY-MM-DD), or null if unavailable
Last Event DateStringDate of the most recent tracking event
Raw All EventsListComplete list of raw tracking events from the carrier API (unprocessed)
ErrorBooleanTrue if the response indicates a problem: unmapped carrier status (found tracking but standardized status Unknown), or a safe-mode/system failure returning not-found. False for normal success or ordinary tracking not found. Possible values: True, False.

Notes