-
Notifications
You must be signed in to change notification settings - Fork 0
Tracking
Igor Sazonov edited this page Mar 5, 2026
·
1 revision
The Tracking resource allows you to track packages and register tracking webhooks.
To register a tracking webhook, you can use the create() method with the carrier and tracking number:
$tracking = $shippo->tracking()->create('usps', '9205590164917312751089');To retrieve the tracking status of a package, use the retrieve() method with the carrier and tracking number:
$tracking = $shippo->tracking()->retrieve('usps', '9205590164917312751089');