Skip to main content

API Reference

Track Shipment API

The Track Shipment endpoint allows you to retrieve real-time tracking updates for a shipment using its specific waybill number.

Track a Shipment

POST/track

Request Body (JSON)

{
"waybill": "TRACK123456"
}

Response Schema (JSON)

{
"waybill": "TRACK123456",
"status": "In Transit",
"current_location": "Cape Town Hub",
"estimated_delivery": "2024-01-20T14:00:00",
"history": [
{
    "timestamp": "2024-01-18T09:00:00",
    "status": "Picked Up",
    "location": "JHB Warehouse"
},
{
    "timestamp": "2024-01-18T18:00:00",
    "status": "Arrived at Hub",
    "location": "Cape Town Hub"
}
]
}