List couriers
Endpoint
Section titled “Endpoint”GET /api/couriersReturns the list of courier services available through Transdirect. This includes both domestic and international couriers.
Request
Section titled “Request”curl -X GET \ -H "Content-Type: application/json" \ https://www.transdirect.com.au/api/couriersResponse
Section titled “Response”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" }}Available couriers
Section titled “Available couriers”Domestic couriers
Section titled “Domestic couriers”These couriers handle deliveries within Australia.
| Courier | Slug | Description |
|---|---|---|
| Allied Express | allied | National road freight and express parcel delivery |
| Aramex | aramex | Parcel and express delivery across Australia |
| Couriers Please | couriersplease | Nationwide parcel delivery service |
| Direct Couriers | directcouriers | Same-day and next-day metropolitan delivery |
| Domestic Freight Express | dfe | Road freight and pallet delivery |
| Hunter Express | hunterexpress | National express parcel and freight service |
| Northline | northline | Freight and logistics across Australia |
| TNT | tnt | Express parcel and freight delivery |
| Team Global Express | teamglobalexpress | National parcel, express, and freight services |
| Capital Transport | capitaltransport | Express and same-day delivery in capital cities |
| Xpress Freight Management | xpressfm | Freight management and delivery services |
International couriers
Section titled “International couriers”These couriers handle deliveries from Australia to international destinations.
| Courier | Slug | Description |
|---|---|---|
| Aramex International | aramex_international | International parcel and express delivery |
| TNT International | tnt_international | International express freight and parcels |
| FedEx International | fedex_international | Global express delivery from Australia |
| Couriers Please International | couriersplease_international | International parcel delivery |
Response fields
Section titled “Response fields”Each courier object contains:
| Field | Type | Description |
|---|---|---|
name | string | Display name of the courier |
slug | string | Unique identifier used in API requests (e.g. when creating bookings or filtering quotes) |