Retrieve shipment details for a given Bill of Lading (BOL) number.
GET /api/public/GetShipment
Provide your API key in the request header.
APIKey: {your-api-key}
Parameter Type Required Description
Num string Yes BOL / consignment number. Alphanumeric with /, -, _ allowed.
On success, RetInfo contains an array of shipment records. Multiple records may be returned if the BOL has more than one work order.
{
"Code": 0,
"Info": "",
"RowsAffected": 1,
"RetInfo": [
{
"WorkOrderID": 10452,
"Corridor": "JHB-CPT",
"Container": "TCKU3456789",
"Manifest": "MAN-2025-001",
"Size": 40,
"Weight": 24500.0,
"Commodity": "General Cargo",
"LastEvent": "Arrived at Depot",
"LastEventDate": "2025-11-15T08:30:00"
}
]
}
Error Examples
{ "Code": 0, "Info": "API Key Missing" }
{ "Code": 0, "Info": "Invalid Number Specified" }