Skip to content

Tracking

Igor Sazonov edited this page Mar 5, 2026 · 1 revision

The Tracking resource allows you to track packages and register tracking webhooks.

Register a Tracking Webhook

To register a tracking webhook, you can use the create() method with the carrier and tracking number:

$tracking = $shippo->tracking()->create('usps', '9205590164917312751089');

Retrieve Tracking Status

To retrieve the tracking status of a package, use the retrieve() method with the carrier and tracking number:

$tracking = $shippo->tracking()->retrieve('usps', '9205590164917312751089');

Clone this wiki locally