Skip to content

List couriers

GET /api/couriers

Returns the list of courier services available through Transdirect. This includes both domestic and international couriers.

Terminal window
curl -X GET \
-H "Content-Type: application/json" \
https://www.transdirect.com.au/api/couriers

A successful response returns a 200 status code with an object of available couriers, keyed by the courier slug.

{
"allied": {
"name": "Allied Express",
"slug": "allied"
},
"aramex": {
"name": "Aramex",
"slug": "aramex"
},
"couriersplease": {
"name": "Couriers Please",
"slug": "couriersplease"
},
"directcouriers": {
"name": "Direct Couriers",
"slug": "directcouriers"
},
"dfe": {
"name": "Domestic Freight Express",
"slug": "dfe"
},
"hunterexpress": {
"name": "Hunter Express",
"slug": "hunterexpress"
},
"northline": {
"name": "Northline",
"slug": "northline"
},
"tnt": {
"name": "TNT",
"slug": "tnt"
},
"teamglobalexpress": {
"name": "Team Global Express",
"slug": "teamglobalexpress"
},
"capitaltransport": {
"name": "Capital Transport",
"slug": "capitaltransport"
},
"xpressfm": {
"name": "Xpress Freight Management",
"slug": "xpressfm"
},
"aramex_international": {
"name": "Aramex International",
"slug": "aramex_international"
},
"tnt_international": {
"name": "TNT International",
"slug": "tnt_international"
},
"fedex_international": {
"name": "FedEx International",
"slug": "fedex_international"
},
"couriersplease_international": {
"name": "Couriers Please International",
"slug": "couriersplease_international"
}
}

These couriers handle deliveries within Australia.

CourierSlugDescription
Allied ExpressalliedNational road freight and express parcel delivery
AramexaramexParcel and express delivery across Australia
Couriers PleasecourierspleaseNationwide parcel delivery service
Direct CouriersdirectcouriersSame-day and next-day metropolitan delivery
Domestic Freight ExpressdfeRoad freight and pallet delivery
Hunter ExpresshunterexpressNational express parcel and freight service
NorthlinenorthlineFreight and logistics across Australia
TNTtntExpress parcel and freight delivery
Team Global ExpressteamglobalexpressNational parcel, express, and freight services
Capital TransportcapitaltransportExpress and same-day delivery in capital cities
Xpress Freight ManagementxpressfmFreight management and delivery services

These couriers handle deliveries from Australia to international destinations.

CourierSlugDescription
Aramex Internationalaramex_internationalInternational parcel and express delivery
TNT Internationaltnt_internationalInternational express freight and parcels
FedEx Internationalfedex_internationalGlobal express delivery from Australia
Couriers Please Internationalcouriersplease_internationalInternational parcel delivery

Each courier object contains:

FieldTypeDescription
namestringDisplay name of the courier
slugstringUnique identifier used in API requests (e.g. when creating bookings or filtering quotes)