Carriers
Australia Post
Shippy provides the following feature support for Australia Post.
- Rates
- Tracking
- Labels
API Credentials
To use Australia Post, you'll need to connect to their API. There are two different APIs to pick from, depending on your requirements.
Postage Assessment Calculator (Rates only)
If you want to just fetch rates for shipments, you can use the Postage Assessment Calculator (PAC) API.
- Go to Australia Post Developers website and register for an API Key.
- Use the API Key from Australia Post as the
apiKeywith the Shippy carrier.
use verbb\shippy\carriers\AustraliaPost;
new AustraliaPost([
'isProduction' => false,
'apiKey' => '•••••••••••••••••••••••••••••••••••',
]);Shipping and Tracking (All)
A more involved API that handles all features. You will be required to have an Australia Post account.
- Go to Australia Post Developers website and register for an API Key.
- Provide your Australia Post (eParcel) account number and complete the registration process.
- Use the API Key from Australia Post as the
apiKeywith the Shippy carrier. - Use the Password from Australia Post as the
passwordwith the Shippy carrier. - Use the Account Number from Australia Post as the
accountNumberwith the Shippy carrier.
use verbb\shippy\carriers\AustraliaPost;
new AustraliaPost([
'isProduction' => false,
'apiKey' => '•••••••••••••••••••••••••••••••••••',
'password' => '•••••••••••••••',
'accountNumber' => '•••••••••',
]);
Last updated: May 2, 2026, 3:15:34 PM