Retrieve a Public Tracking
Endpoint
GET /v1/trackings/:waybill_id/couriers/:courier_code
This endpoint can be used to track any other waybill from any other source. It requires the courier code which you can find the in Courier API.
API Response Fields
The indication of whether this API has provided the desired response.
The brief explanation of this API response.
The returned object of this API response.
The ID of the tracking object.
The air waybill number of this shipment.
The courier information from this shipment.courier .companyREQUIRED
courier .nameDeprecated
courier .phoneDeprecated
courier .driver_nameNullable
courier .driver_phoneNullable
courier .driver_photo_urlNullable
courier .driver_plate_numberNullable
Show child parameters
The courier company.
The driver's name.
The driver's phone number.
The driver's name.
The driver's phone number.
The driver's photo url.
The driver's vehicle registration number.
The shipment origin.origin .contact_nameNullable
origin .addressNullable
Show child parameters
The shipment origin contact person's name.
The shipment pickup address.
The shipment destination.destination .contact_nameNullable
destination .addressNullable
Show child parameters
The package receiver's name.
The package receiver's address.
The tracking history.history .noteREQUIRED
history .updated_atREQUIRED
Show child parameters
The note of tracking history.
The datetime of tracking history.
The link from courier to track this shipment.
If this tracking belongs to Biteship's order, then the order ID will be shown.
The shipment status. Must have value from one of the Tracking Status.
API Response
Response
{
"success": true,
"messsage": "Successfully get tracking info",
"object": "tracking",
"id": "6051861741a37414e6637fab",
"waybill_id": "0123082100003094",
"courier": {
"company": "jne",
"name": "John Doe", // Deprecated
"phone": "08123456789", // Deprecated
"driver_name": "John Doe",
"driver_phone": "08123456789",
"driver_photo_url": null,
"driver_plate_number": null
},
"origin": {
"contact_name": "[INSTANT COURIER] BITESHIP/FIE",
"address": "JALAN TANJUNG 16 NO.5, RT.8/RW.2, WEST TANJUNG, SOUTH JAKARTA CITY, JAKARTA, IN"
},
"destination": {
"contact_name": "ADITARA MADJID",
"address": "THE PAKUBUWONO RESIDENCE, JALAN PAKUBUWONO VI, RW.1, GUNUNG, SOUTH JAKARTA CITY"
},
"history": [
{
"note": "SHIPMENT RECEIVED BY JNE COUNTER OFFICER AT [JAKARTA]",
"updated_at": "2021-03-16T18:17:00+07:00",
"status": "dropping_off"
},
{
"note": "RECEIVED AT SORTING CENTER [JAKARTA]",
"updated_at": "2021-03-16T21:15:00+07:00",
"status": "dropping_off"
},
{
"note": "SHIPMENT FORWARDED TO DESTINATION [JAKARTA , HUB VETERAN BINTARO]",
"updated_at": "2021-03-16T23:12:00+07:00",
"status": "dropping_off"
},
{
"note": "RECEIVED AT INBOUND STATION [JAKARTA , HUB VETERAN BINTARO]",
"updated_at": "2021-03-16T23:43:00+07:00",
"status": "dropping_off"
},
{
"note": "WITH DELIVERY COURIER [JAKARTA , HUB VETERAN BINTARO]",
"updated_at": "2021-03-17T09:29:00+07:00",
"status": "dropping_off"
},
{
"note": "DELIVERED TO [ainul yakin | 17-03-2021 11:15 | JAKARTA ]",
"updated_at": "2021-03-17T11:15:00+07:00",
"status": "delivered"
}
],
"link": "https://random-courier-tracking-link.com/",
"order_id": "8041821741b38417d6644fbc",
"status": "delivered"
}