Carriers
USPS
Shippy provides the following feature support for USPS.
- Rates
- Tracking
- Labels
API Credentials
To use USPS, you'll need to connect to their API.
- Go to USPS and login to your account.
- From the Apps section, follow the prompts to create a new app.
- Copy the Consumer Key from USPS as the
clientIdwith the Shippy carrier. - Copy the Consumer Secret from USPS as the
clientSecretwith the Shippy carrier.
To create labels, you'll be required to supply a few more details.
use verbb\shippy\carriers\USPS;
new USPS([
'isProduction' => false,
'clientId' => '••••••••••••••••',
'clientSecret' => '••••••••••••••••',
'accountNumber' => '••••••••••••••••',
// Required for labels
'customerRegistrationId' => '••••••••••••••••',
'mailerId' => '••••••••••••••••',
]);
Last updated: May 2, 2026, 3:15:35 PM